From 903f60211944e06bd477f0f73feb4643680c5809 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Sat, 22 Jun 2024 19:09:27 +1000 Subject: [PATCH] fix: Add test.sh to docker container --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 469e2d3..103f3c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,7 @@ COPY main.go ./ COPY go.mod ./ COPY go.sum ./ COPY templates ./templates/ +COPY test.sh ./ RUN go get RUN go build main.go EXPOSE 3000