2021-09-12 08:45:44 +00:00
|
|
|
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8-slim
|
|
|
|
ENV DOCKER=1
|
|
|
|
|
2021-12-03 12:00:12 +00:00
|
|
|
RUN pip install fastapi \
|
|
|
|
fastapi-responses \
|
|
|
|
uvicorn[standard] \
|
|
|
|
python-jose[cryptography] \
|
|
|
|
pytest \
|
|
|
|
requests \
|
|
|
|
pytest-asyncio \
|
|
|
|
passlib \
|
|
|
|
python-multipart
|
2021-09-12 08:45:44 +00:00
|
|
|
COPY ./app /app/app
|