lixonet-ee/Dockerfile

14 lines
351 B
Docker
Raw Normal View History

2020-04-27 20:12:08 +00:00
FROM docker/compose:alpine-1.25.5
2020-04-27 19:55:27 +00:00
MAINTAINER Team Lixo <lixonet@team.lixo>
2020-06-21 06:41:22 +00:00
RUN apk add curl git py-pip && pip install netcalc
2020-04-27 19:55:27 +00:00
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"]