From 057f514210c3eea3cbc113c5601be79e7d5dfbdc Mon Sep 17 00:00:00 2001 From: Fabian Wienand Date: Tue, 16 Apr 2024 17:14:51 +0200 Subject: [PATCH] test Signed-off-by: Fabian Wienand --- .github/dockerfiles/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/dockerfiles/Dockerfile b/.github/dockerfiles/Dockerfile index f0df953b..18106a99 100644 --- a/.github/dockerfiles/Dockerfile +++ b/.github/dockerfiles/Dockerfile @@ -29,10 +29,9 @@ RUN echo "StrictHostKeyChecking no" > /root/.ssh/config RUN git config --global url."git@github.com:".insteadOf "https://github.com/" # Clone contest server -RUN --mount=type=ssh git clone https://github.com/blindspotsoftware/contest.git /root/contest - +COPY . /root/contest WORKDIR /root/contest -RUN --mount=type=ssh go build ./cmds/contest +RUN go build ./cmds/contest #fwhunt dependencies RUN --mount=type=ssh git clone https://github.com/binarly-io/fwhunt-scan.git /root/fwhunt-scan