Techdocs / Dockerfile
Hemanth Sai Garladinne
update docker file (#15)
0514855
raw
history blame contribute delete
181 Bytes
FROM python:3.10.9
COPY ./TechdocsAPI .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]