add experimental dockerrfile

This commit is contained in:
gempir 2019-05-17 21:24:35 +02:00
parent fdb0cef80c
commit 42526e9c53

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM golang:latest
WORKDIR /go/src/github.com/gempir/justlog
COPY . .
RUN go get ./...
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
FROM alpine:latest
RUN apk --no-cache add ca-certificates
COPY --from=0 /go/src/github.com/gempir/justlog/app .
CMD ["./app --config=/etc/justlog.json"]
EXPOSE 8025