agri-tech-fastapi / Dockerfile
eaedk's picture
simple py3.9
c38eb2c
raw
history blame
265 Bytes
FROM python:3.9
#-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install -r requirements.txt
# COPY main.py ./
# COPY assets/ ./
EXPOSE 7860
# CMD [ "python", "app.py" ]
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]