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

20 lines
528 B
Plaintext
Raw Normal View History

2020-06-21 08:32:40 +02:00
IMAGE alpine3.8_3.8.5-200621
COPY https://github.com/alpinelinux/docker-alpine/raw/v3.8/x86_64/alpine-minirootfs-3.8.5-x86_64.tar.gz
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
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
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