Disassembler
ce325cf3d0
- Bump basic OS to Alpine 3.9 - Restructure repo and add layer versioning - Use JSON for all metadata - Merge abuild branch (but without abuild)
14 lines
543 B
Plaintext
14 lines
543 B
Plaintext
IMAGE build
|
|
LAYER shared/alpine3.8
|
|
COPY https://github.com/gliderlabs/docker-alpine/raw/rootfs/library-3.8/x86_64/versions/library-3.8/x86_64/rootfs.tar.xz
|
|
|
|
RUN EOF
|
|
# Add edge/testing repository
|
|
echo '@em http://dl-cdn.alpinelinux.org/alpine/edge/main' >>/etc/apk/repositories
|
|
echo '@et http://dl-cdn.alpinelinux.org/alpine/edge/testing' >>/etc/apk/repositories
|
|
echo '@ec http://dl-cdn.alpinelinux.org/alpine/edge/community' >>/etc/apk/repositories
|
|
|
|
# Install s6 supervisor
|
|
apk --no-cache add libxml2 libxslt s6@em
|
|
EOF
|