lixonet-ee/Dockerfile

14 lines
310 B
Docker
Raw Normal View History

2020-04-27 20:11:27 +00:00
FROM compose:alpine-1.25.5
2020-04-27 19:55:27 +00:00
MAINTAINER Team Lixo <lixonet@team.lixo>
RUN apk add curl
RUN curl -L "https://github.com/gliderlabs/sigil/releases/download/v0.5.0/sigil_0.5.0_$(uname -sm|tr \ _).tgz" | tar -zxC /usr/local/bin
VOLUME /etc/lixonet
2020-04-27 19:59:26 +00:00
WORKDIR /run
2020-04-27 20:00:07 +00:00
ADD . .
2020-04-27 20:00:43 +00:00
RUN chmod +x build.sh
2020-04-27 19:59:26 +00:00
2020-04-27 19:55:27 +00:00
CMD ["./build.sh"]