6 lines
194 B
Docker
6 lines
194 B
Docker
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
|
|
ENV DOCKER=1
|
|
|
|
RUN apt-get update && apt-get install -y git zip && mkdir /files
|
|
RUN pip install fastapi-responses b2sdk pytest
|
|
COPY ./app /app/app |