Moncey10's picture
Update Dockerfile
1305c56 verified
raw
history blame contribute delete
248 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirments.txt .
RUN pip install --no-cache-dir -r requirments.txt
COPY . .
RUN python data.py
RUN python preprocessing.py
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]