dockerfiles/base/alpine/Dockerfile

21 lines
544 B
Docker
Raw Normal View History

2016-09-15 17:42:00 +00:00
FROM alpine:edge
RUN apk add -U --no-cache tini
2015-11-06 21:30:14 +00:00
ADD ./entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
2016-09-15 17:42:00 +00:00
# Add Backplane agent
2017-01-09 23:28:20 +00:00
ENV BACKPLANE_AGENT_VERSION 1.2.2
2016-09-15 17:42:00 +00:00
RUN 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 \
2016-09-26 17:46:06 +00:00
&& apk del wget
2016-09-15 17:42:00 +00:00
2015-11-06 21:30:14 +00:00
# update to edge
ADD repositories /etc/apk/repositories
2016-09-15 17:42:00 +00:00
RUN apk add -U --no-cache runit
2015-11-06 21:30:14 +00:00
ADD runit/ /etc/system