10 lines
203 B
Docker
10 lines
203 B
Docker
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
|
|
|
|
COPY prestart.sh /app/prestart.sh
|
|
COPY cards.json /app/
|
|
|
|
COPY ./Pipf* ./
|
|
RUN pip install pipenv && pipenv install --deploy --system
|
|
|
|
|
|
COPY ./app /app/app |