lean-expr-tree / Dockerfile
dx2102's picture
Update Dockerfile
9f3d5df verified
raw
history blame
156 Bytes
FROM python:3.9
RUN pip install fastapi uvicorn
WORKDIR /app
COPY --chown=user . /app
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]