update Docker images to stable/Bookworm (#6740)
* update Docker images to stable/Bookworm * add copyright headers
This commit is contained in:
parent
c13b0c94b9
commit
7538a9db8a
|
@ -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"]
|
||||
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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"]
|
||||
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue