We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb30dc7 commit 69a95aeCopy full SHA for 69a95ae
1 file changed
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.15.0a6-slim
+FROM python:3.14.3-slim
2
3
ENV RUNNER="runner"
4
ENV WORKDIR="/workdir/"
@@ -7,7 +7,7 @@ RUN mkdir -p "${WORKDIR}"
7
8
WORKDIR "${WORKDIR}"
9
COPY requirements.txt "${WORKDIR}"
10
-RUN ( getent passwd "${RUNNER}" || adduser --disabled-password "${RUNNER}" ) \
+RUN ( getent passwd "${RUNNER}" || adduser --disabled-password --gecos "" "${RUNNER}" ) \
11
&& pip install --no-cache-dir -r "${WORKDIR}requirements.txt"
12
13
HEALTHCHECK NONE
0 commit comments