Skip to content

Commit b393d63

Browse files
committed
Containerfile: force-reconfigure in final stage
because apparently ca-certificates wasn't getting the memo on void-musl-full
1 parent eb0601b commit b393d63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Containerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ FROM scratch AS image-default
5555
COPY --link --from=install-default /target /
5656
RUN \
5757
install -dm1777 tmp; \
58-
xbps-reconfigure -a; \
58+
xbps-reconfigure -fa; \
5959
rm -rf /var/cache/xbps/*
6060
CMD ["/bin/sh"]
6161

@@ -66,14 +66,14 @@ RUN \
6666
[ ! -f "/usr/bin/$util" ] && /usr/bin/busybox ln -sfv busybox "/usr/bin/$util"; \
6767
done; \
6868
install -dm1777 tmp; \
69-
xbps-reconfigure -a; \
69+
xbps-reconfigure -fa; \
7070
rm -rf /var/cache/xbps/*
7171
CMD ["/bin/sh"]
7272

7373
FROM scratch AS image-full
7474
COPY --from=install-full /target /
7575
RUN \
7676
install -dm1777 tmp; \
77-
xbps-reconfigure -a; \
77+
xbps-reconfigure -fa; \
7878
rm -rf /var/cache/xbps/*
7979
CMD ["/bin/sh"]

0 commit comments

Comments
 (0)