playmak3r's picture
fix Dockerfile
d0355ca
raw
history blame contribute delete
171 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
RUN python download_model.py
EXPOSE 8000
CMD ["uvicorn", "server:app"]