flask-redis: dev envs support & misc improvements (#265)
(Most of this is almost identical to #263.) * Docker Desktop Development Environments config * Use cache volumes for pip * Downgrade from Python 3.11 _alpha_ -> Python 3.10 * Use port `8000` to avoid conflicts with Airplay on macOS for default Flask port `5000` * Use `SIGINT` to gracefully stop Flask * Formatting fixes in `compose.yaml` Signed-off-by: Milas Bowman <milas.bowman@docker.com>master
parent
ec552567c7
commit
b53e4542c9
@ -0,0 +1,16 @@
|
|||||||
|
services:
|
||||||
|
redis:
|
||||||
|
image: redislabs/redismod
|
||||||
|
ports:
|
||||||
|
- '6379:6379'
|
||||||
|
web:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
target: dev-envs
|
||||||
|
stop_signal: SIGINT
|
||||||
|
ports:
|
||||||
|
- '8000:8000'
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
depends_on:
|
||||||
|
- redis
|
@ -1,6 +1,27 @@
|
|||||||
FROM python:3.11.0a6-alpine3.15
|
# syntax=docker/dockerfile:1.4
|
||||||
|
FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
|
||||||
|
|
||||||
WORKDIR /code
|
WORKDIR /code
|
||||||
|
|
||||||
COPY requirements.txt /code
|
COPY requirements.txt /code
|
||||||
RUN pip install -r requirements.txt --no-cache-dir
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
||||||
|
pip3 install -r requirements.txt
|
||||||
|
|
||||||
COPY . /code
|
COPY . /code
|
||||||
CMD python app.py
|
|
||||||
|
ENTRYPOINT ["python3"]
|
||||||
|
CMD ["app.py"]
|
||||||
|
|
||||||
|
FROM builder as dev-envs
|
||||||
|
|
||||||
|
RUN <<EOF
|
||||||
|
apk update
|
||||||
|
apk add git bash
|
||||||
|
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 / /
|
||||||
|
@ -1,13 +1,18 @@
|
|||||||
services:
|
services:
|
||||||
redis:
|
redis:
|
||||||
image: redislabs/redismod
|
image: redislabs/redismod
|
||||||
ports:
|
ports:
|
||||||
- '6379:6379'
|
- '6379:6379'
|
||||||
web:
|
web:
|
||||||
build: .
|
build:
|
||||||
ports:
|
context: .
|
||||||
- "5000:5000"
|
target: builder
|
||||||
volumes:
|
# flask requires SIGINT to stop gracefully
|
||||||
- .:/code
|
# (default stop signal from Compose is SIGTERM)
|
||||||
depends_on:
|
stop_signal: SIGINT
|
||||||
- redis
|
ports:
|
||||||
|
- '8000:8000'
|
||||||
|
volumes:
|
||||||
|
- .:/code
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
Loading…
Reference in New Issue