We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd1b72b commit 4b3799aCopy full SHA for 4b3799a
dockerfiles/debian_kind
@@ -29,7 +29,8 @@ ENV GOPATH="/home/user/go"
29
ENV PATH="${GOPATH}/bin:${PATH}"
30
RUN go install sigs.k8s.io/kind@v0.25.0
31
32
-RUN useradd -m user && echo "user:password" | chpasswd && usermod -aG docker user
+RUN useradd -m user && echo "user:password" | chpasswd && \
33
+ usermod -aG sudo user
34
# Ensure Docker can be run as a non-root user
35
RUN groupadd docker && usermod -aG docker user
36
COPY --chown=user:user ./examples /home/user/examples
0 commit comments