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 4e9f8f8 commit 1eb29f5Copy full SHA for 1eb29f5
Dockerfile
@@ -9,6 +9,16 @@ RUN make build && \
9
10
# package
11
FROM alpine
12
-RUN apk --no-cache add e2fsprogs xfsprogs util-linux && rm -rf /usr/share/terminfo && rm -rf /etc/terminfo
+RUN apk --no-cache add \
13
+ # fs detection
14
+ file \
15
+ # ext4
16
+ e2fsprogs \
17
+ # xfs
18
+ xfsprogs util-linux \
19
+ # terminfo files are shipped with 'util-linux' and are hardlinks - that breaks docker export tar
20
+ && rm -rf /usr/share/terminfo \
21
+ && rm -rf /etc/terminfo
22
+
23
COPY --from=builder /docker-volume-loopback /
24
CMD [ "/docker-volume-loopback" ]
0 commit comments