We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b313469 commit b71598eCopy full SHA for b71598e
example_app/compose/flask/Dockerfile
@@ -1,6 +1,9 @@
1
FROM python:3.7-slim as dev
2
3
ENV PYTHONUNBUFFERED 1
4
+RUN apt-get update && \
5
+ apt-get install git -y --no-install-recommends && \
6
+ rm -rf /var/lib/apt/lists/*
7
RUN groupadd -r flask && useradd -r -g flask flask
8
COPY --chown=flask . /flask_mongoengine
9
RUN pip install --upgrade pip \
0 commit comments