Hygwell / Dockerfile
Hemavathineelirothu's picture
Create Dockerfile
4927320 verified
raw
history blame contribute delete
147 Bytes
FROM python:3.9
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]