File tree 9 files changed +13
-14
lines changed
mithril-test-lab/mithril-devnet
9 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 1
1
# ##############################
2
2
# STEP 1: build rust executable
3
3
# ##############################
4
- FROM rust:bullseye AS rustbuilder
4
+ FROM rust:bookworm AS rustbuilder
5
5
6
6
# Create appuser
7
7
RUN adduser --no-create-home --disabled-password appuser
@@ -32,7 +32,7 @@ RUN /app/target/release/mithril-aggregator --version
32
32
# ##############################
33
33
# STEP 2: build a small image
34
34
# ##############################
35
- FROM debian:11 -slim
35
+ FROM debian:12 -slim
36
36
37
37
# Args
38
38
ARG CARDANO_NODE_VERSION=10.1.4
Original file line number Diff line number Diff line change 1
1
# Creates a docker image to run an executable built outside of the image
2
2
# This relies on the fact the mithril-aggregator executable has been built
3
3
# on a debian-compatible x86-64 environment
4
- ARG DOCKER_IMAGE_FROM=debian:11 -slim
4
+ ARG DOCKER_IMAGE_FROM=debian:12 -slim
5
5
FROM $DOCKER_IMAGE_FROM
6
6
7
7
# Create appuser
Original file line number Diff line number Diff line change 1
1
# ##############################
2
2
# STEP 1: build rust executable
3
3
# ##############################
4
- FROM rust:bullseye AS rustbuilder
4
+ FROM rust:bookworm AS rustbuilder
5
5
6
6
# Create appuser
7
7
RUN adduser --no-create-home --disabled-password appuser
@@ -30,7 +30,7 @@ RUN /app/target/release/mithril-client --version
30
30
# ##############################
31
31
# STEP 2: build a small image
32
32
# ##############################
33
- FROM debian:11 -slim
33
+ FROM debian:12 -slim
34
34
35
35
# Upgrade
36
36
RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget sqlite3 && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 1
1
# Creates a docker image to run an executable built outside of the image
2
2
# This relies on the fact the mithril-client executable has been built
3
3
# on a debian-compatible x86-64 environment
4
- ARG DOCKER_IMAGE_FROM=debian:11 -slim
4
+ ARG DOCKER_IMAGE_FROM=debian:12 -slim
5
5
FROM $DOCKER_IMAGE_FROM
6
6
7
7
# Create appuser
Original file line number Diff line number Diff line change 1
1
# ##############################
2
2
# STEP 1: build rust executable
3
3
# ##############################
4
- FROM rust:bullseye AS rustbuilder
4
+ FROM rust:bookworm AS rustbuilder
5
5
6
6
# Create appuser
7
7
RUN adduser --no-create-home --disabled-password appuser
@@ -30,7 +30,7 @@ RUN /app/target/release/mithril-relay --version
30
30
# ##############################
31
31
# STEP 2: build a small image
32
32
# ##############################
33
- FROM debian:11 -slim
33
+ FROM debian:12 -slim
34
34
35
35
# Upgrade
36
36
RUN apt-get update -y && apt-get install -y libssl-dev ca-certificates wget sqlite3 && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 1
1
# Creates a docker image to run an executable built outside of the image
2
2
# This relies on the fact the mithril-relay executable has been built
3
3
# on a debian-compatible x86-64 environment
4
- ARG DOCKER_IMAGE_FROM=debian:11 -slim
4
+ ARG DOCKER_IMAGE_FROM=debian:12 -slim
5
5
FROM $DOCKER_IMAGE_FROM
6
6
7
7
# Create appuser
Original file line number Diff line number Diff line change 1
1
# ##############################
2
2
# STEP 1: build rust executable
3
3
# ##############################
4
- FROM rust:bullseye AS rustbuilder
4
+ FROM rust:bookworm AS rustbuilder
5
5
6
6
# Create appuser
7
7
RUN adduser --no-create-home --disabled-password appuser
@@ -33,7 +33,7 @@ RUN /app/target/release/mithril-signer --version
33
33
# ##############################
34
34
# STEP 2: build a small image
35
35
# ##############################
36
- FROM debian:11 -slim
36
+ FROM debian:12 -slim
37
37
38
38
# Args
39
39
ARG CARDANO_NODE_VERSION=10.1.4
Original file line number Diff line number Diff line change 1
1
# Creates a docker image to run an executable built outside of the image
2
2
# This relies on the fact the mithril-signer executable has been built
3
3
# on a debian-compatible x86-64 environment
4
- ARG DOCKER_IMAGE_FROM=debian:11 -slim
4
+ ARG DOCKER_IMAGE_FROM=debian:12 -slim
5
5
FROM $DOCKER_IMAGE_FROM
6
6
7
7
# Create appuser
Original file line number Diff line number Diff line change @@ -55,8 +55,7 @@ MITHRIL_NODE_DOCKER_BUILD_TYPE=ci ./devnet-run.sh
55
55
# # from locally built binaries with a custom slim image used as Docker image source
56
56
# ## This configuration depends on the version of 'glibc' on your computer
57
57
# ## 'debian:12-slim': default value, works on Ubuntu 22.04
58
- # ## 'debian:11-slim': works on Ubuntu 20.04
59
- MITHRIL_NODE_DOCKER_CI_IMAGE_FROM=debian:11-slim MITHRIL_NODE_DOCKER_BUILD_TYPE=ci ./devnet-run.sh
58
+ MITHRIL_NODE_DOCKER_CI_IMAGE_FROM=debian:12-slim MITHRIL_NODE_DOCKER_BUILD_TYPE=ci ./devnet-run.sh
60
59
61
60
# # from rust builder in Docker (slower build times, always works)
62
61
MITHRIL_NODE_DOCKER_BUILD_TYPE=legacy ./devnet-run.sh
You can’t perform that action at this time.
0 commit comments