14 lines
302 B
Docker
14 lines
302 B
Docker
FROM alpine:latest
|
|
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
|
|
|
|
WORKDIR /run
|
|
ADD . .
|
|
RUN chmod +x build.sh
|
|
|
|
CMD ["./build.sh"]
|