Skip to content

Commit

Permalink
Added missing dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
aacebedo committed Feb 9, 2016
1 parent a179d26 commit 4faebbf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions environments/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from alpine
RUN apk add --update go git python3 bash

ENV GOPATH /go:/out/cfdnsupdater
RUN go get gopkg.in/alecthomas/kingpin.v2
RUN go get github.com/op/go-logging
RUN go get github.com/levigross/grequests
ENV CGO_ENABLED=0

ADD ./build.py /usr/bin
RUN chmod u+x /usr/bin/build.py

WORKDIR /out
VOLUME ["/out"]

ENTRYPOINT ["build.py"]



0 comments on commit 4faebbf

Please sign in to comment.