Skip to content

Commit

Permalink
Lock all builds to debian:bookworm-slim
Browse files Browse the repository at this point in the history
Fixing the version minimises these images breaking in the future, if
latest-stable included breaking changes.

-BEGIN VERIFY SCRIPT-
find . -type f -name "Dockerfile" | while read -r dockerfile; do
    sed -i 's|bullseye-slim|bookworm-slim|g' "$dockerfile"
    sed -i 's|stable-slim|bookworm-slim|g' "$dockerfile"
done
-END VERIFY SCRIPT-
  • Loading branch information
willcl-ark committed Nov 6, 2023
1 parent d2fcdcb commit c3984aa
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion 0.11/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stable-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
2 changes: 1 addition & 1 deletion 0.12/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stable-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
2 changes: 1 addition & 1 deletion 0.13/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stable-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
2 changes: 1 addition & 1 deletion 0.16/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stable-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
2 changes: 1 addition & 1 deletion 0.17/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stable-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
2 changes: 1 addition & 1 deletion 0.18/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stable-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
2 changes: 1 addition & 1 deletion 0.19/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
2 changes: 1 addition & 1 deletion 0.20/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
2 changes: 1 addition & 1 deletion 0.21/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
4 changes: 2 additions & 2 deletions 22/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye-slim as builder
FROM debian:bookworm-slim as builder

LABEL maintainer.0="João Fonseca (@joaopaulofonseca)" \
maintainer.1="Pedro Branco (@pedrobranco)" \
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN set -ex \
&& rm -rf /opt/bitcoin-${BITCOIN_VERSION}/bin/bitcoin-qt

# Second stage
FROM debian:bullseye-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
4 changes: 2 additions & 2 deletions 23/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye-slim as builder
FROM debian:bookworm-slim as builder

LABEL maintainer.0="João Fonseca (@joaopaulofonseca)" \
maintainer.1="Pedro Branco (@pedrobranco)" \
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN set -ex \
&& rm -rf /opt/bitcoin-${BITCOIN_VERSION}/bin/bitcoin-qt

# Second stage
FROM debian:bullseye-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
4 changes: 2 additions & 2 deletions 24/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye-slim as builder
FROM debian:bookworm-slim as builder

LABEL maintainer.0="João Fonseca (@joaopaulofonseca)" \
maintainer.1="Pedro Branco (@pedrobranco)" \
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN set -ex \
&& rm -rf /opt/bitcoin-${BITCOIN_VERSION}/bin/bitcoin-qt

# Second stage
FROM debian:bullseye-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down
4 changes: 2 additions & 2 deletions 25/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye-slim as builder
FROM debian:bookworm-slim as builder

LABEL maintainer.0="João Fonseca (@joaopaulofonseca)" \
maintainer.1="Pedro Branco (@pedrobranco)" \
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN set -ex \
&& rm -rf /opt/bitcoin-${BITCOIN_VERSION}/bin/bitcoin-qt

# Second stage
FROM debian:bullseye-slim
FROM debian:bookworm-slim

ARG UID=101
ARG GID=101
Expand Down

0 comments on commit c3984aa

Please sign in to comment.