@@ -104,6 +104,7 @@ def get_devnet_enodes(plan, filename):
104
104
description = "Getting devnet enodes" ,
105
105
files = {constants .GENESIS_DATA_MOUNTPOINT_ON_CLIENTS : filename },
106
106
wait = None ,
107
+ image = "python:3.12-alpine" ,
107
108
run = """
108
109
with open("/network-configs/enodes.txt") as bootnode_file:
109
110
bootnodes = []
@@ -121,6 +122,7 @@ def get_devnet_enrs_list(plan, filename):
121
122
description = "Creating devnet enrs list" ,
122
123
files = {constants .GENESIS_DATA_MOUNTPOINT_ON_CLIENTS : filename },
123
124
wait = None ,
125
+ image = "python:3.12-alpine" ,
124
126
run = """
125
127
with open("/network-configs/bootstrap_nodes.txt") as bootnode_file:
126
128
bootnodes = []
@@ -138,6 +140,7 @@ def read_genesis_timestamp_from_config(plan, filename):
138
140
description = "Reading genesis timestamp from config" ,
139
141
files = {constants .GENESIS_DATA_MOUNTPOINT_ON_CLIENTS : filename },
140
142
wait = None ,
143
+ image = "python:3.12-alpine" ,
141
144
packages = ["PyYAML" ],
142
145
run = """
143
146
import yaml
@@ -157,6 +160,7 @@ def read_genesis_network_id_from_config(plan, filename):
157
160
description = "Reading genesis network id from config" ,
158
161
files = {constants .GENESIS_DATA_MOUNTPOINT_ON_CLIENTS : filename },
159
162
wait = None ,
163
+ image = "python:3.12-alpine" ,
160
164
packages = ["PyYAML" ],
161
165
run = """
162
166
import yaml
@@ -191,6 +195,7 @@ def get_network_name(network):
191
195
def get_final_genesis_timestamp (plan , padding ):
192
196
result = plan .run_python (
193
197
description = "Getting final genesis timestamp" ,
198
+ image = "python:3.12-alpine" ,
194
199
run = """
195
200
import time
196
201
import sys
0 commit comments