mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-17 15:20:18 +00:00
11 lines
159 B
Docker
11 lines
159 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk --no-cache update && \
|
|
apk --no-cache upgrade -a && \
|
|
apk --no-cache add \
|
|
dhcpcd \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY . ./
|