SHYAMSATHISH005/data-cleaning-openenv
1
1FROM python:3.10-slim2ENV PORT=78603WORKDIR /app4COPY . /app5RUN pip install --no-cache-dir -r requirements.txt6EXPOSE 78607CMD ["sh", "-c", "uvicorn app:app --host 0.0.0.0 --port ${PORT:-7860}"]8 1FROM python:3.10-slim2ENV PORT=78603WORKDIR /app4COPY . /app5RUN pip install --no-cache-dir -r requirements.txt6EXPOSE 78607CMD ["sh", "-c", "uvicorn app:app --host 0.0.0.0 --port ${PORT:-7860}"]8