From 08b1ef0df2b2f01eeaee4e81767e97e77be4e8ab Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Wed, 18 Dec 2024 08:41:48 +0100 Subject: [PATCH] fix --- sonic/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonic/Dockerfile b/sonic/Dockerfile index b8d649fb..387bef87 100644 --- a/sonic/Dockerfile +++ b/sonic/Dockerfile @@ -9,7 +9,7 @@ FROM golang:1.22 as builder RUN apt-get update && apt-get install -y git musl-dev make -RUN cd /go && git clone https://github.com/Fantom-foundation/Sonic.git && git fetch --tags && git checkout -b v2.0.1 tags/v2.0.1 +RUN cd /go && git clone https://github.com/Fantom-foundation/Sonic.git && cd Sonic && git fetch --tags && git checkout -b v2.0.1 tags/v2.0.1 WORKDIR /go/Sonic