Compare commits

...

4 Commits

Author SHA1 Message Date
dependabot[bot]
4e1bbadd94
Merge fde4bed8aa49c2d0e06652047894119aa6c43d89 into c7f4e092eba2dde4f18bd65df1e771637a0eaad7 2025-05-12 04:53:43 +00:00
Dmitry Shurupov
c7f4e092eb
Merge pull request #365 from palark/dependabot/docker/golang-1.24.3-bullseye
Bump golang from 1.24.2-bullseye to 1.24.3-bullseye
2025-05-12 09:53:38 +05:00
dependabot[bot]
e247846250
Bump golang from 1.24.2-bullseye to 1.24.3-bullseye
Bumps golang from 1.24.2-bullseye to 1.24.3-bullseye.

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

Signed-off-by: dependabot[bot] <support@github.com>
2025-05-12 02:30:51 +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.2-bullseye AS backend-builder FROM golang:1.24.3-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