We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30cf69f commit df6fae2Copy full SHA for df6fae2
1 file changed
Dockerfile
@@ -1,8 +1,11 @@
1
FROM docker:dind
2
+
3
+# Install required packages
4
RUN apk update && \
5
apk add --no-cache xorriso git xz curl ca-certificates iptables cpio bash perl-utils && \
- addgroup -S docker && \
- adduser -S docker-user -G docker
6
+ # Add user to the existing docker group
7
+ adduser -S docker-user && \
8
+ addgroup docker-user docker
9
10
WORKDIR /usr/src/app
11
COPY . .
0 commit comments