Spotter-VM/lxc-shared/alpine3.8/image

15 lines
413 B
Plaintext
Raw Normal View History

IMAGE alpine3.8_3.8.5-200313
COPY https://github.com/gliderlabs/docker-alpine/raw/rootfs/library-3.8/x86_64/versions/library-3.8/x86_64/rootfs.tar.xz
2018-09-05 17:46:44 +02:00
2018-09-12 16:08:10 +02:00
RUN EOF
2019-03-19 15:00:32 +01:00
# Update packages
apk --no-cache upgrade
# Install common packages
apk --no-cache add libbz2 libgcc libressl libstdc++ libxml2 libxslt ncurses-libs pcre readline s6 xz-libs
2019-09-18 11:29:58 +02:00
# Cleanup
rm -rf /etc/crontabs/root /etc/periodic
2018-09-12 16:08:10 +02:00
EOF