8 lines
171 B
Docker
8 lines
171 B
Docker
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
|
|
|
|
RUN pip3 install --no-cache-dir -U pip pipenv
|
|
COPY Pipfile* ./
|
|
RUN pipenv install --deploy --system
|
|
|
|
COPY ./app /app/app
|