dockerfiles/base/alpine/box.rb

32 lines
1.0 KiB
Ruby
Raw Normal View History

2017-01-11 08:03:58 +00:00
from "alpine:edge"
copy "repositories", "/etc/apk/repositories"
copy "runit/", "/etc/system"
2017-02-22 19:59:00 +00:00
copy "bin/", "/bin"
2017-01-11 08:03:58 +00:00
run "apk upgrade --no-cache"
2017-02-05 16:32:48 +00:00
run "apk add --no-cache --virtual xe-alpine-base tini ca-certificates runit libc6-compat"
2017-01-11 08:03:58 +00:00
2017-02-05 16:32:48 +00:00
# if libtinfo.so.5 is used, install ncurses5-libs via apk
run "ln -s /usr/lib/libncurses.so.5 /usr/lib/libtinfo.so.5"
2017-03-12 19:36:18 +00:00
env "BACKPLANE_AGENT_VERSION" => "1.4.0"
2017-01-11 08:03:58 +00:00
run %q[ apk add -U --no-cache wget ca-certificates \
&& wget https://bin.equinox.io/c/jWahGASjoRq/backplane-stable-linux-amd64.tgz \
&& tar xf backplane-stable-linux-amd64.tgz \
&& mv backplane /usr/bin/backplane \
&& rm backplane-stable-linux-amd64.tgz \
&& apk del wget ]
2017-02-05 16:32:48 +00:00
run %q[ apk add -U --no-cache wget \
2017-03-12 19:36:18 +00:00
&& wget https://xena.greedo.xeserv.us/pkg/alpine/edge/core/x86_64/xeserv-keys-1.3-r0.apk \
&& apk add --allow-untrusted ./xeserv-keys-1.3-r0.apk \
&& rm ./xeserv-keys-1.3-r0.apk \
2017-02-05 16:32:48 +00:00
&& apk del wget ]
2017-01-11 08:03:58 +00:00
copy "./entrypoint.sh", "/usr/sbin/entrypoint.sh"
entrypoint "/usr/sbin/entrypoint.sh"
flatten
tag "xena/alpine"