This commit is contained in:
gempir 2019-05-17 21:54:38 +02:00
parent 42526e9c53
commit e3d5eaf327

View file

@ -7,5 +7,5 @@ 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"]
CMD ["./app", "--config=/etc/justlog.json"]
EXPOSE 8025