We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a60251 commit 8a1e907Copy full SHA for 8a1e907
Dockerfile
@@ -26,7 +26,8 @@ FROM scratch
26
ARG INSTALL_ROOT
27
COPY --link --from=builder ${INSTALL_ROOT} /
28
# Create user + (home with SGID set):
29
-RUN echo 'testssl:x:1000:1000::/home/testssl:/bin/bash' >> /etc/passwd \
+RUN ln -s /usr/bin/busybox /usr/bin/tar \
30
+ && echo 'testssl:x:1000:1000::/home/testssl:/bin/bash' >> /etc/passwd \
31
&& echo 'testssl:x:1000:' >> /etc/group \
32
&& echo 'testssl:!::0:::::' >> /etc/shadow \
33
&& install --mode 2755 --owner testssl --group testssl --directory /home/testssl \
0 commit comments