mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-30 02:28:56 +00:00
15 lines
197 B
Docker
15 lines
197 B
Docker
FROM alpine:3.5
|
|
|
|
COPY repositories /etc/apk/
|
|
|
|
RUN \
|
|
apk update && apk upgrade -a && \
|
|
apk add --no-cache \
|
|
dhcpcd \
|
|
e2fsprogs \
|
|
e2fsprogs-extra \
|
|
wireguard-tools \
|
|
&& true
|
|
|
|
COPY . ./
|