Merge pull request #86 from smalot/fix-packr-path

Fix packr path dependency
This commit is contained in:
Ilya Sosnovsky 2021-11-25 20:30:00 +03:00 committed by GitHub
commit 4bdb74411c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ COPY frontend/ /app
RUN cd /app && npm install && npm run build
FROM golang:1.14.2-buster AS backend-builder
RUN go get -u github.com/gobuffalo/packr/v2/packr2
RUN go get -u github.com/gobuffalo/packr/packr2
COPY --from=frontend-builder /app/static /app/frontend/static
COPY . /app
RUN cd /app && packr2 && env CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -ldflags='-linkmode external -extldflags "-static" -s -w' -o ovpn-admin && packr2 clean

View File

@ -9,5 +9,5 @@ apt-get install -y nodejs
PATH=$PATH:~/go/bin
go get -u github.com/gobuffalo/packr/v2/packr2
go get -u github.com/gobuffalo/packr/packr2

View File

@ -9,5 +9,5 @@ apt-get install -y nodejs
PATH=$PATH:~/go/bin
go get -u github.com/gobuffalo/packr/v2/packr2
go get -u github.com/gobuffalo/packr/packr2