Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
d69ab17819
Dockerfile: use our own image
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2024-08-04 13:31:04 -04:00

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" \