Dockerfile: use our own image

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2024-08-04 13:31:04 -04:00
parent 9c8693ea55
commit d69ab17819
Signed by: vbatts
GPG key ID: E30EFAA812C6E5ED

View file

@ -1,4 +1,7 @@
FROM python:3.11-slim as python-base
FROM r.batts.cloud/debian:bookworm as python-base
RUN apt update && \
apt install -y --no-install-recommends python3 && \
apt clean all && rm -rf /var/lib/apt/lists/*
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
POETRY_HOME="/opt/poetry" \