CRLF
This commit is contained in:
parent
deacaa94be
commit
26075bad79
@ -1,5 +1,5 @@
|
|||||||
LAYER shared/alpine
|
LAYER shared/alpine
|
||||||
|
|
||||||
SCRIPT
|
SCRIPT
|
||||||
apk --no-cache add s6
|
apk --no-cache add s6
|
||||||
RUN
|
RUN
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
LAYER shared/alpine
|
LAYER shared/alpine
|
||||||
LAYER shared/java
|
LAYER shared/java
|
||||||
|
|
||||||
SCRIPT
|
SCRIPT
|
||||||
apk --no-cache add openjdk8-jre-base
|
apk --no-cache add openjdk8-jre-base
|
||||||
RUN
|
RUN
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
LAYER shared/alpine
|
LAYER shared/alpine
|
||||||
LAYER shared/libxml
|
LAYER shared/libxml
|
||||||
|
|
||||||
SCRIPT
|
SCRIPT
|
||||||
apk --no-cache add libxml2 libxslt
|
apk --no-cache add libxml2 libxslt
|
||||||
RUN
|
RUN
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
LAYER shared/alpine
|
LAYER shared/alpine
|
||||||
LAYER shared/php
|
LAYER shared/php
|
||||||
|
|
||||||
SCRIPT
|
SCRIPT
|
||||||
apk --no-cache add nginx php7 php7-ctype php7-fpm php7-gd php7-json php7-mbstring php7-mcrypt php7-opcache php7-session
|
apk --no-cache add nginx php7 php7-ctype php7-fpm php7-gd php7-json php7-mbstring php7-mcrypt php7-opcache php7-session
|
||||||
RUN
|
RUN
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
LAYER shared/alpine
|
LAYER shared/alpine
|
||||||
LAYER shared/libxml
|
LAYER shared/libxml
|
||||||
LAYER shared/python2
|
LAYER shared/python2
|
||||||
|
|
||||||
SCRIPT
|
SCRIPT
|
||||||
apk --no-cache add python2
|
apk --no-cache add python2
|
||||||
RUN
|
RUN
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
LAYER shared/alpine
|
LAYER shared/alpine
|
||||||
LAYER shared/libxml
|
LAYER shared/libxml
|
||||||
LAYER shared/python2
|
LAYER shared/python2
|
||||||
|
|
||||||
SCRIPT
|
SCRIPT
|
||||||
apk --no-cache add python3
|
apk --no-cache add python3
|
||||||
ln -s /usr/bin/python3 /usr/bin/python
|
ln -s /usr/bin/python3 /usr/bin/python
|
||||||
RUN
|
RUN
|
||||||
|
@ -3,6 +3,9 @@ set -e
|
|||||||
|
|
||||||
SOURCE_DIR=$(realpath $(dirname "${0}"))
|
SOURCE_DIR=$(realpath $(dirname "${0}"))
|
||||||
|
|
||||||
|
# Copy lxc-build
|
||||||
|
cp ${SOURCE_DIR}/lxc-build /usr/bin/lxc-build
|
||||||
|
|
||||||
# Build basic Alpine LXC image
|
# Build basic Alpine LXC image
|
||||||
mkdir -p /var/lib/lxc/shared/alpine
|
mkdir -p /var/lib/lxc/shared/alpine
|
||||||
wget https://github.com/gliderlabs/docker-alpine/raw/2bfe6510ee31d86cfeb2f37587f4cf866f28ffbc/versions/library-3.8/x86_64/rootfs.tar.xz -O - | tar xJf - -C /var/lib/lxc/shared/alpine
|
wget https://github.com/gliderlabs/docker-alpine/raw/2bfe6510ee31d86cfeb2f37587f4cf866f28ffbc/versions/library-3.8/x86_64/rootfs.tar.xz -O - | tar xJf - -C /var/lib/lxc/shared/alpine
|
||||||
|
Loading…
Reference in New Issue
Block a user