update Docker images to stable/Bookworm (#6740)

* update Docker images to stable/Bookworm

* add copyright headers
This commit is contained in:
tersec 2024-12-01 12:07:03 +00:00 committed by GitHub
parent c13b0c94b9
commit 7538a9db8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 45 additions and 3 deletions

View File

@ -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"]

View File

@ -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"]

View File

@ -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"]

View File

@ -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"]

View File

@ -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"]

View File

@ -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"]

View File

@ -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.