lixonet-ee/Dockerfile

14 lines
353 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>
2021-05-18 17:38:32 -06:00
RUN apk add gnupg 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 . .
2021-05-18 17:38:32 -06:00
RUN chmod +x run.sh
2020-04-27 19:59:26 +00:00
2021-05-18 17:38:32 -06:00
CMD ["./run.sh"]