ResumeAPI / Dockerfile
Vaibhav84's picture
Db Connection added
6d97eef
raw
history blame
212 Bytes
FROM python:3.9.4
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"]