Add Alpine 3.12 image

This commit is contained in:
Disassembler 2020-10-13 21:13:53 +02:00
parent 9b517ceebb
commit 1cd9fb1485
Signed by: Disassembler
GPG Key ID: 524BD33A0EE29499
2 changed files with 20 additions and 0 deletions

View File

@ -43,6 +43,7 @@ spoc-image build -p alpine3.11-ruby2.4/image
spoc-image build -p alpine3.11-ruby2.6/image spoc-image build -p alpine3.11-ruby2.6/image
spoc-image build -p alpine3.11-tomcat7/image spoc-image build -p alpine3.11-tomcat7/image
spoc-image build -p alpine3.11-tomcat8.5/image spoc-image build -p alpine3.11-tomcat8.5/image
spoc-image build -p alpine3.12/image
# Build services # Build services
cd ${ROOT}/lxc-services cd ${ROOT}/lxc-services

View File

@ -0,0 +1,19 @@
IMAGE alpine3.12_3.12.0-201013
COPY https://github.com/alpinelinux/docker-alpine/raw/v3.12/x86_64/alpine-minirootfs-3.12.0-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
# 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