switch to debian
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Aaron Riedel 2023-05-10 20:21:47 +02:00
parent 8029be9f2c
commit 5131632f2d
Signed by: aaron
GPG key ID: 643004654D40D577

View file

@ -1,4 +1,4 @@
FROM amd64/python:3.11.3-alpine3.16
FROM amd64/python:3.11.3-slim-bullseye
RUN apk add --no-cache git
WORKDIR ./
ARG PUID=1000
@ -7,7 +7,7 @@ ENV USER docker
ENV HOMEDIR "/home/${USER}"
ENV PATH ${HOMEDIR}/.local/bin:$PATH
ENV PLUGIN_PROFILE production
RUN addgroup -S "${GROUP}" && adduser -S "${USER}" -G "${GROUP}"
RUN useradd -u "${PUID}" -m "${USER}"
COPY script.sh /bin/
RUN chmod +x /bin/script.sh
USER ${USER}