mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-03 19:47:42 +00:00
0eb21735ae accidentally broke some package
builds by switching linuxkit/alpine to linuxkit/containerd. Let's revert
the ones that shouldn't be there.
Closes #1991
Signed-off-by: Tycho Andersen <tycho@docker.com>
14 lines
385 B
Docker
14 lines
385 B
Docker
FROM linuxkit/alpine:630ee558e4869672fae230c78364e367b8ea67a9 as tools
|
|
RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories
|
|
RUN \
|
|
apk update && \
|
|
apk upgrade -a && \
|
|
apk add --no-cache wireguard-tools
|
|
|
|
FROM scratch
|
|
ENTRYPOINT []
|
|
CMD []
|
|
WORKDIR /
|
|
COPY --from=tools /usr/bin/wg /usr/bin/wg-quick /usr/bin/
|
|
COPY --from=tools /usr/lib/libmnl.so* /lib/
|