ResumeAPI / Dockerfile
Vaibhav84's picture
Update Dockerfile
fb27164 verified
raw
history blame
210 Bytes
FROM python:3.9
COPY . .
# Set the working directory to /
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]