From 0c475082d2e093d07fed25ed3cfdda381d273a84 Mon Sep 17 00:00:00 2001 From: Isu Kim Date: Tue, 27 Feb 2024 11:51:19 +0900 Subject: [PATCH] Fix CI - chore: fix GitHub Action's working directory as SentryFlow - chore: update Dockerfile for SentryFlow accordingly --- SentryFlow/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SentryFlow/Dockerfile b/SentryFlow/Dockerfile index ce023b4..2cbcbcd 100644 --- a/SentryFlow/Dockerfile +++ b/SentryFlow/Dockerfile @@ -19,7 +19,7 @@ RUN go mod tidy RUN make build WORKDIR /app -COPY /sentryflow . +COPY /SentryFlow . RUN go mod tidy RUN export CGO_ENABLED=1; export CC=gcc;