drop deprecated ENV key value format
All checks were successful
ci/woodpecker/push/rootless Pipeline was successful
ci/woodpecker/push/root Pipeline was successful

This commit is contained in:
Aaron Riedel 2025-03-16 12:41:07 +01:00
parent cea2f4b13f
commit fe2775ed8c
Signed by: aaron
GPG key ID: 643004654D40D577
2 changed files with 10 additions and 10 deletions

View file

@ -2,11 +2,11 @@ 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

View file

@ -2,11 +2,11 @@ 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