nginx-flask-mongo: add dev envs support (#268)

Signed-off-by: Milas Bowman <milas.bowman@docker.com>
This commit is contained in:
Milas Bowman
2022-07-12 05:31:52 -04:00
committed by GitHub
parent 42f6713231
commit c172cd7f01
4 changed files with 72 additions and 6 deletions

View File

@@ -1,7 +1,28 @@
FROM python:3.7
# syntax=docker/dockerfile:1.4
FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /src
COPY . .
RUN pip install -r requirements.txt --no-cache-dir
COPY requirements.txt /src
RUN --mount=type=cache,target=/root/.cache/pip \
pip3 install -r requirements.txt
CMD ["./server.py"]
COPY . .
CMD ["python3", "server.py"]
FROM builder as dev-envs
RUN <<EOF
apk update
apk add git
EOF
RUN <<EOF
addgroup -S docker
adduser -S --shell /bin/bash --ingroup docker vscode
EOF
# install Docker tools (cli, buildx, compose)
COPY --from=gloursdocker/docker / /
CMD ["python3", "server.py"]