1
0
mirror of https://github.com/docker/awesome-compose.git synced 2025-07-04 21:13:54 +00:00
awesome-compose/samples/nginx-flask-mongo/flask/Dockerfile
Anca Iordache 4a619921b9 Compose app skeletons
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
2020-02-13 14:14:36 +01:00

8 lines
96 B
Docker
Executable File

FROM python:3.7
WORKDIR /src
COPY . .
RUN pip install -r requirements.txt
CMD ["./server.py"]