mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 18:28:07 +02:00
31 lines
613 B
Docker
Executable file
31 lines
613 B
Docker
Executable file
# syntax=docker/dockerfile:1.4
|
|
FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
|
|
|
|
WORKDIR /code
|
|
COPY requirements.txt /code
|
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
|
pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENV FLASK_APP hello.py
|
|
ENV FLASK_ENV development
|
|
ENV FLASK_RUN_PORT 8000
|
|
ENV FLASK_RUN_HOST 0.0.0.0
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["flask", "run"]
|
|
|
|
FROM builder AS dev-envs
|
|
|
|
RUN apt update && \
|
|
apt add git
|
|
|
|
RUN addgroup -S docker && \
|
|
adduser -S --shell /bin/bash --ingroup docker vscode
|
|
|
|
# install Docker tools (cli, buildx, compose)
|
|
COPY --from=gloursdocker/docker / /
|
|
|
|
CMD ["flask", "run"]
|