We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 233c260 commit c2b950dCopy full SHA for c2b950d
Dockerfile
@@ -49,7 +49,8 @@ RUN echo "$VERSION" > /version.txt && echo "$REVISION" > /revision.txt
49
ARG USERNAME=steadybit
50
ARG USER_UID=10000
51
52
-RUN adduser -u $USER_UID -D $USERNAME
+RUN apk update && apk upgrade --no-cache && rm -rf /var/cache/apk/* && \
53
+ adduser -u $USER_UID -D $USERNAME
54
55
USER $USER_UID
56
0 commit comments