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 microservices/services/audit/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN go build -trimpath -o main ./cmd/main.go

# Run the audit-service on a pinned Alpine image as an unprivileged user.
# Configuration is environment-only; migrations are owned by the monolith.
FROM alpine:3.20
FROM alpine:3.24

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion microservices/services/auth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN go build -trimpath -o main ./cmd/main.go

# Run the auth-service on a pinned Alpine image as an unprivileged user.
# Configuration is environment-only; migrations are owned by the monolith.
FROM alpine:3.20
FROM alpine:3.24

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion microservices/services/bpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN go mod download && go mod tidy
COPY . .
RUN go build -trimpath -o main ./cmd/main.go

FROM alpine:3.20
FROM alpine:3.24
WORKDIR /app
RUN apk add --no-cache tzdata wget \
&& addgroup -S app && adduser -S app -G app \
Expand Down
2 changes: 1 addition & 1 deletion microservices/services/file/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN go build -trimpath -o main ./cmd/main.go

# Run the file-service on a pinned Alpine image as an unprivileged user.
# Configuration is environment-only; migrations are owned by the monolith.
FROM alpine:3.20
FROM alpine:3.24

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion microservices/services/identity/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN go build -trimpath -o main ./cmd/main.go

# Run the identity-service on a pinned Alpine image as an unprivileged user.
# Configuration is environment-only; migrations are owned by the monolith.
FROM alpine:3.20
FROM alpine:3.24

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion microservices/services/monitor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN go build -trimpath -o main ./cmd/main.go \
&& go build -trimpath -o migrate ./cmd/migrate

# Run the backend on a pinned Alpine image as an unprivileged user.
FROM alpine:3.20
FROM alpine:3.24

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion microservices/services/system/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ COPY services/monitor/migrations/ /repository-snapshot/microservices/services/mo

# Run the system-service on a pinned Alpine image as an unprivileged user.
# Configuration is environment-only; migrations are owned by the monolith.
FROM alpine:3.20
FROM alpine:3.24

WORKDIR /app

Expand Down
Loading