run as root
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Aaron Riedel 2025-02-15 12:39:23 +01:00
parent 5cb3969721
commit e796db0006
Signed by: aaron
GPG key ID: 643004654D40D577

View file

@ -1,17 +1,17 @@
FROM python:3.13.1-slim-bullseye FROM python:3.13.2-slim-bookworm
RUN apt-get update -qq && apt-get install -qq git --no-install-recommends && rm -rf /var/lib/apt/lists/* RUN apt-get update -qq && apt-get install -qq git --no-install-recommends && rm -rf /var/lib/apt/lists/*
WORKDIR ./ WORKDIR ./
ARG PUID=1000 # ARG PUID=1000
ENV GROUP dockergroup # ENV GROUP dockergroup
ENV USER docker # ENV USER docker
ENV HOMEDIR "/home/${USER}" # ENV HOMEDIR "/home/${USER}"
ENV PATH ${HOMEDIR}/.local/bin:$PATH # ENV PATH ${HOMEDIR}/.local/bin:$PATH
ENV PLUGIN_PROFILE production ENV PLUGIN_PROFILE production
RUN useradd -u "${PUID}" -m "${USER}" # RUN useradd -u "${PUID}" -m "${USER}"
COPY script.sh /bin/ COPY script.sh /bin/
RUN chmod +x /bin/script.sh RUN chmod +x /bin/script.sh
USER ${USER} # USER ${USER}
WORKDIR ${HOMEDIR} # WORKDIR ${HOMEDIR}
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
RUN rm requirements.txt RUN rm requirements.txt