mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-30 05:54:16 +00:00
12 lines
171 B
Docker
12 lines
171 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk --no-cache update && \
|
|
apk --no-cache upgrade -a && \
|
|
apk --no-cache add \
|
|
strace \
|
|
git \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY . ./
|