We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f6fa7 commit 04e76efCopy full SHA for 04e76ef
2 files changed
Dockerfile
@@ -11,8 +11,8 @@ RUN wget "https://raw.githubusercontent.com/zcash/zcash/v5.6.0/zcutil/fetch-para
11
12
ARG TARGETPLATFORM
13
ARG TAG
14
-RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then EXEC_NAME="octez-node-arm64"; else EXEC_NAME="octez-node"; fi \
15
- && wget "https://github.com/serokell/tezos-packaging/releases/download/$TAG/$EXEC_NAME" -O "octez-node" \
+RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then ARCH="arm64"; else ARCH="x86_64"; fi \
+ && wget "https://octez.tezos.com/releases/octez-$TAG/binaries/$ARCH/octez-node" -O "octez-node" \
16
&& chmod +x octez-node \
17
&& ln -s octez-node tezos-node
18
#RUN ./tezos-node identity generate "0.0" --data-dir /tezos/sandbox
octez_version
@@ -1 +1 @@
1
-v22.0-1
+v23.0-rc2
0 commit comments