Update Dockerfile
This commit is contained in:
parent
4f5847f7c2
commit
bcd7b9ee62
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ RUN cd /app && npm install && npm run build
|
|||
FROM golang:1.14.2-buster AS backend-builder
|
||||
COPY --from=frontend-builder /app/static /app/frontend/static
|
||||
COPY . /app
|
||||
RUN go get -u github.com/gobuffalo/packr/v2/packr2 && cd /app && packr2 && env CGO_ENABLED=./1 GOOS=linux GOARCH=amd64 go build -ldflags='-linkmode external -extldflags "-static" -s -w' -o openvpn-admin && packr2 clean
|
||||
RUN go get -u github.com/gobuffalo/packr/v2/packr2 && cd /app && packr2 && env CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -ldflags='-linkmode external -extldflags "-static" -s -w' -o openvpn-admin && packr2 clean
|
||||
|
||||
FROM alpine:3.13
|
||||
WORKDIR /app
|
||||
|
|
Loading…
Reference in a new issue