Adrien Bouvais 74da180a07
All checks were successful
Build and Push Docker Images / build-and-push (push) Successful in 1m49s
Removed label
2026-08-15 18:03:21 +02:00

17 lines
377 B
Plaintext

FROM python:3.12-slim-bookworm AS base
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
tini \
&& rm -rf /var/lib/apt/lists/*
RUN groupadd --gid 1000 appuser \
&& useradd --uid 1000 --gid appuser --shell /bin/bash --create-home appuser
WORKDIR /home/appuser
USER appuser
ENTRYPOINT ["tini", "--"]