Changed file to +x

This commit is contained in:
Phil 2021-12-08 10:07:31 +00:00
parent 22eb584739
commit d2f2700d2a
No known key found for this signature in database
GPG key ID: 91884FA482AA7CB3

View file

@ -1,12 +1,12 @@
FROM golang:alpine as builder
RUN apk add --no-cache gcc libgo
RUN apk add --no-cache gcc libgo git
WORKDIR /go/src/git.ucode.space/goshorly
COPY . .
RUN go get -d -v ./...
RUN ./build-ci.sh
RUN chmod +x && ./build-ci.sh
FROM gruebel/upx:latest as upx
COPY --from=builder /go/src/git.ucode.space/goshorly/app /app.org