commit d52af8f024dbc37f3932de4f4ba444f19cb97c41 Author: John Stephani Date: Mon Mar 16 16:25:34 2026 -0500 first commit diff --git a/app/Dockerfile b/app/Dockerfile new file mode 100755 index 0000000..d0be3b5 --- /dev/null +++ b/app/Dockerfile @@ -0,0 +1,27 @@ +# syntax=docker/dockerfile:1.4 +FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder + +WORKDIR /app + +COPY requirements.txt /app +RUN --mount=type=cache,target=/root/.cache/pip \ + pip3 install -r requirements.txt + +COPY . /app + +ENTRYPOINT ["python3"] +CMD ["app.py"] + +FROM builder as dev-envs + +RUN < + + + + + + Connections, but better + + + + + +

Connections

+ +
+ +
+ + + +
+ +
+ + + + + diff --git a/compose.yaml b/compose.yaml new file mode 100755 index 0000000..0835f3e --- /dev/null +++ b/compose.yaml @@ -0,0 +1,9 @@ +services: + web: + build: + context: app + target: builder + restart: unless-stopped + stop_signal: SIGINT + ports: + - '8003:8000'