pdf-trainer-api / Dockerfile
Avinashnalla7's picture
fix: docker FastAPI deploy
40f2d84
raw
history blame
247 Bytes
FROM python:3.11-slim
WORKDIR /app
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY . /app
EXPOSE 7860
CMD ["python", "-u", "app.py"]