mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-03 12:17:07 +00:00
This adds things like getenforce and setenforce. Signed-off-by: Tycho Andersen <tycho@docker.com>
16 lines
218 B
Docker
16 lines
218 B
Docker
FROM alpine:3.5
|
|
|
|
COPY repositories /etc/apk/
|
|
|
|
RUN \
|
|
apk update && apk upgrade -a && \
|
|
apk add --no-cache \
|
|
dhcpcd \
|
|
e2fsprogs \
|
|
e2fsprogs-extra \
|
|
policycoreutils \
|
|
libselinux-utils \
|
|
&& true
|
|
|
|
COPY . ./
|