Skip to content

Commit

Permalink
fix(apps): dockerfile runtime image typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtechmares committed Feb 19, 2024
1 parent cb40cd6 commit 614a2e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/blue-green/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN go mod download

RUN CGO_ENABLED=0 GOOS=linux go build -ldflags "-X main.IsBlue=${IS_BLUE}" -a -installsuffix cgo -o blue-green .

FROM debian:bookwork-slim as runtime
FROM debian:bookworm-slim as runtime

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion apps/hello-world/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN go mod download

RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o hello-world .

FROM debian:bookwork-slim as runtime
FROM debian:bookworm-slim as runtime

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion apps/probes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN go mod download

RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o probes .

FROM debian:bookwork-slim as runtime
FROM debian:bookworm-slim as runtime

WORKDIR /app

Expand Down

0 comments on commit 614a2e7

Please sign in to comment.