rename binary name

This commit is contained in:
viktorbarzin 2021-03-16 19:30:40 +00:00
parent 6a1ccb4405
commit 4d01377d1b
No known key found for this signature in database
GPG key ID: 0EB088298288D958

View file

@ -2,7 +2,7 @@ FROM golang:alpine
RUN mkdir /app
ADD . /app/
WORKDIR /app
RUN go build -o main .
RUN go build -o infra_cli .
RUN adduser -S -D -H -h /app appuser
USER appuser
CMD ["./main"]