Compare commits

...

4 Commits

Author SHA1 Message Date
dependabot[bot]
2814aa4187
Merge fde4bed8aa49c2d0e06652047894119aa6c43d89 into d74e7f8313bbd726ebfd1908a182fdbdf751fcdb 2025-06-10 04:40:56 +00: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
dependabot[bot]
fde4bed8aa
Bump node from 16-alpine3.15 to 19-alpine3.15
Bumps node from 16-alpine3.15 to 19-alpine3.15.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-23 07:35:57 +00:00

View File

@ -1,8 +1,8 @@
FROM node:16-alpine3.15 AS frontend-builder FROM node:19-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