From 239e393975b742b286f46e33aaa04a698e84d3f4 Mon Sep 17 00:00:00 2001 From: Rohan kumar <51409281+rohan220217@users.noreply.github.com> Date: Tue, 16 Jul 2024 12:14:22 +0530 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 665f77bbcd49..6c215011a713 100644 --- a/Dockerfile +++ b/Dockerfile @@ -86,7 +86,7 @@ RUN --mount=type=cache,target=/root/.cache/pip/http-v2 \ FROM golang:1.22.4 AS build-smokescreen RUN git clone --depth=1 https://github.com/stripe/smokescreen.git -RUN cd smokescreen && git checkout eb1ac09 && go build -o /tmp/smokescreen +RUN cd smokescreen && git checkout master && go build -o /tmp/smokescreen FROM ${BASE_IMAGE}