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

22 lines
546 B
Plaintext
Raw Normal View History

IMAGE alpine3.11_3.11.3-200313
COPY https://github.com/alpinelinux/docker-alpine/raw/v3.11/x86_64/alpine-minirootfs-3.11.3-x86_64.tar.gz
RUN EOF
# 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
2020-03-14 10:15:40 +01:00
# Set time zone data
apk --no-cache add tzdata
cp /usr/share/zoneinfo/UTC /etc/localtime
apk --no-cache del tzdata
# Cleanup
rm -rf /etc/crontabs/root /etc/periodic
EOF
COPY image.d