Skip to content

Commit

Permalink
upgrade golang to 1.22.8, node.js to 20.18.0, alpine base image to 3.…
Browse files Browse the repository at this point in the history
…20.3
  • Loading branch information
mayswind committed Nov 2, 2024
1 parent c800eb5 commit 637faef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build backend binary file
FROM golang:1.22.6-alpine3.20 AS be-builder
FROM golang:1.22.8-alpine3.20 AS be-builder
ARG RELEASE_BUILD
ENV RELEASE_BUILD=$RELEASE_BUILD
WORKDIR /go/src/github.com/mayswind/ezbookkeeping
Expand All @@ -9,7 +9,7 @@ RUN apk add git gcc g++ libc-dev
RUN ./build.sh backend

# Build frontend files
FROM --platform=$BUILDPLATFORM node:20.16.0-alpine3.20 AS fe-builder
FROM --platform=$BUILDPLATFORM node:20.18.0-alpine3.20 AS fe-builder
ARG RELEASE_BUILD
ENV RELEASE_BUILD=$RELEASE_BUILD
WORKDIR /go/src/github.com/mayswind/ezbookkeeping
Expand All @@ -19,7 +19,7 @@ RUN apk add git
RUN ./build.sh frontend

# Package docker image
FROM alpine:3.20.2
FROM alpine:3.20.3
LABEL maintainer="MaysWind <[email protected]>"
RUN addgroup -S -g 1000 ezbookkeeping && adduser -S -G ezbookkeeping -u 1000 ezbookkeeping
RUN apk --no-cache add tzdata
Expand Down

0 comments on commit 637faef

Please sign in to comment.