mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-07 21:18:48 +00:00
The new hiearchy is:
- pkg/{init,mirage-compile}: additional Moby packages
- src/sdk -> the begining of the MirageOS SDK for Moby
- src/dhcp-client -> the code for the MirageOS dhcp-client service
Signed-off-by: Thomas Gazagnaire <thomas@gazagnaire.org>
11 lines
161 B
Docker
11 lines
161 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk --no-cache update && \
|
|
apk --no-cache upgrade -a && \
|
|
apk --no-cache add \
|
|
strace \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY . ./
|