Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/Dockerfile.executor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.22
FROM alpine:3.24

ARG TOFU_VERSION=1.11.0
ARG TERRAGRUNT_VERSION=0.84.0
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.migrate
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o /migrate ./cmd/migrate

FROM alpine:3.22
FROM alpine:3.24
RUN apk add --no-cache ca-certificates
RUN addgroup -S portal && adduser -S portal -G portal
COPY --from=builder /migrate /usr/local/bin/migrate
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.server
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o /server ./cmd/server

FROM alpine:3.22
FROM alpine:3.24
RUN apk add --no-cache ca-certificates
RUN addgroup -S portal && adduser -S portal -G portal
COPY --from=builder /server /usr/local/bin/server
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o /worker ./cmd/worker

FROM alpine:3.22
FROM alpine:3.24
RUN apk add --no-cache ca-certificates git
RUN addgroup -S portal && adduser -S portal -G portal
COPY --from=builder /worker /usr/local/bin/worker
Expand Down
Loading