mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-01 07:37:21 +00:00
10 lines
148 B
Docker
10 lines
148 B
Docker
FROM alpine:3.5
|
|
|
|
RUN \
|
|
apk --no-cache update && \
|
|
apk --no-cache upgrade -a && \
|
|
apk --no-cache add \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY . ./
|