lixonet-ee/Dockerfile

15 lines
359 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>
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
2020-06-21 06:38:39 +00:00
RUN apk add py-pip && pip install netcalc
2020-04-27 19:55:27 +00:00
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"]