We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e9ccecc + 9183f0a commit e9b35c2Copy full SHA for e9b35c2
.github/workflows/build.yml
@@ -22,6 +22,9 @@ jobs:
22
with:
23
node-version: 18.x
24
25
+ - name: Set up Docker Buildx
26
+ uses: docker/setup-buildx-action@v2
27
+
28
- name: Prepare Vue App
29
run: |
30
make prepare
@@ -42,3 +45,6 @@ jobs:
42
45
43
46
- name: Web ESLint
44
47
run: make vue-lint
48
49
+ - name: Build docker image
50
+ run: make build-docker
Dockerfile
@@ -7,7 +7,6 @@ ARG REVISION
7
8
WORKDIR /go/src/app
9
COPY . .
10
-COPY --from=build-node /node/src/internal/web/dist /go/src/app/internal/web/dist
11
12
RUN go mod download
13
RUN CGO_ENABLED=0 go build -o /go/bin/gallery-web -ldflags="-s -w -X 'github.com/michaelcoll/gallery-web/cmd.version=$VERSION'"
0 commit comments