remove debug param

This commit is contained in:
gidsi 2018-04-20 18:35:19 +02:00
commit 1ab9d78736
2 changed files with 4 additions and 3 deletions

View file

@ -2,8 +2,8 @@ FROM golang:alpine as builder
RUN apk --no-cache add git
WORKDIR /go/src/app
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
RUN go get -d ./...
RUN go install ./...
FROM alpine:latest
@ -12,4 +12,4 @@ WORKDIR /app
COPY --from=builder /go/bin/app .
COPY config.yaml config.yaml
EXPOSE 8080
CMD ["./app", "-shared_secret=$SHARED_SECRET"]
CMD ["./app"]