Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update Docker images to stable/Bookworm #6740

Merged
merged 2 commits into from
Dec 1, 2024
Merged
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
9 changes: 8 additions & 1 deletion docker/dist/binaries/Dockerfile.bn.amd64
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
FROM debian:bullseye-slim
# Copyright (c) 2022-2024 Status Research & Development GmbH. Licensed under
# either of:
# - Apache License, version 2.0
# - MIT license
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.

FROM debian:bookworm-slim

SHELL ["/bin/bash", "-c"]

Expand Down
7 changes: 7 additions & 0 deletions docker/dist/binaries/Dockerfile.bn.arm
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2022-2024 Status Research & Development GmbH. Licensed under
# either of:
# - Apache License, version 2.0
# - MIT license
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.

FROM --platform=linux/arm/v7 debian:bookworm-slim

SHELL ["/bin/bash", "-c"]
Expand Down
7 changes: 7 additions & 0 deletions docker/dist/binaries/Dockerfile.bn.arm64
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2022-2024 Status Research & Development GmbH. Licensed under
# either of:
# - Apache License, version 2.0
# - MIT license
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.

FROM --platform=linux/arm64/v8 debian:bookworm-slim

SHELL ["/bin/bash", "-c"]
Expand Down
9 changes: 8 additions & 1 deletion docker/dist/binaries/Dockerfile.vc.amd64
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
FROM debian:bullseye-slim
# Copyright (c) 2022-2024 Status Research & Development GmbH. Licensed under
# either of:
# - Apache License, version 2.0
# - MIT license
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.

FROM debian:bookworm-slim

SHELL ["/bin/bash", "-c"]

Expand Down
7 changes: 7 additions & 0 deletions docker/dist/binaries/Dockerfile.vc.arm
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2022-2024 Status Research & Development GmbH. Licensed under
# either of:
# - Apache License, version 2.0
# - MIT license
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.

FROM --platform=linux/arm/v7 debian:bookworm-slim

SHELL ["/bin/bash", "-c"]
Expand Down
7 changes: 7 additions & 0 deletions docker/dist/binaries/Dockerfile.vc.arm64
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2022-2024 Status Research & Development GmbH. Licensed under
# either of:
# - Apache License, version 2.0
# - MIT license
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.

FROM --platform=linux/arm64/v8 debian:bookworm-slim

SHELL ["/bin/bash", "-c"]
Expand Down
2 changes: 1 addition & 1 deletion docs/the_nimbus_book/src/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Docker images for the [Nimbus beacon node](https://hub.docker.com/r/statusim/nim

We have version-specific Docker tags (e.g. `statusim/nimbus-eth2:amd64-v1.2.3`) and a tag for the latest image (e.g. `statusim/nimbus-eth2:amd64-latest`).

These images contain the same binaries as the [release tarballs](./binaries.md) inside a `debian:bullseye-slim` image, running under a user imaginatively named `user`, with UID:GID of 1000:1000.
These images contain the same binaries as the [release tarballs](./binaries.md) inside a `debian:bookworm-slim` image, running under a user imaginatively named `user`, with UID:GID of 1000:1000.

The binaries are placed under the `/home/user/` directory which is also the default *WORKDIR*.
The *ENTRYPOINT* of the image is configured to directly launch the respective binary without any extra arguments.
Expand Down
Loading