Compare commits

..

3 Commits

Author SHA1 Message Date
Pmoranga
74377882c4
Merge 213e1d7b0f0981e68e4181b7c209a984b710eb6e into d74e7f8313bbd726ebfd1908a182fdbdf751fcdb 2025-06-16 14:17:05 +08:00
Dmitry Shurupov
d74e7f8313
Merge pull request #372 from palark/dependabot/docker/golang-1.24.4-bullseye
Bump golang from 1.24.3-bullseye to 1.24.4-bullseye
2025-06-10 11:40:51 +07:00
dependabot[bot]
0239b19d7f
Bump golang from 1.24.3-bullseye to 1.24.4-bullseye
Bumps golang from 1.24.3-bullseye to 1.24.4-bullseye.

---
updated-dependencies:
- dependency-name: golang
  dependency-version: 1.24.4-bullseye
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-06-09 03:28:26 +00:00

View File

@ -2,7 +2,7 @@ FROM node:16-alpine3.15 AS frontend-builder
COPY ../frontend /app COPY ../frontend /app
RUN apk add --update python3 make g++ && cd /app && npm install && npm run build RUN apk add --update python3 make g++ && cd /app && npm install && npm run build
FROM golang:1.24.3-bullseye AS backend-builder FROM golang:1.24.4-bullseye AS backend-builder
RUN go install github.com/gobuffalo/packr/v2/packr2@latest RUN go install github.com/gobuffalo/packr/v2/packr2@latest
COPY --from=frontend-builder /app/static /app/frontend/static COPY --from=frontend-builder /app/static /app/frontend/static
COPY .. /app COPY .. /app