Skip to content

Commit 69a95ae

Browse files
committed
Fix Python version, gecos
1 parent bb30dc7 commit 69a95ae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.15.0a6-slim
1+
FROM python:3.14.3-slim
22

33
ENV RUNNER="runner"
44
ENV WORKDIR="/workdir/"
@@ -7,7 +7,7 @@ RUN mkdir -p "${WORKDIR}"
77

88
WORKDIR "${WORKDIR}"
99
COPY requirements.txt "${WORKDIR}"
10-
RUN ( getent passwd "${RUNNER}" || adduser --disabled-password "${RUNNER}" ) \
10+
RUN ( getent passwd "${RUNNER}" || adduser --disabled-password --gecos "" "${RUNNER}" ) \
1111
&& pip install --no-cache-dir -r "${WORKDIR}requirements.txt"
1212

1313
HEALTHCHECK NONE

0 commit comments

Comments
 (0)