From 532577a12ab9207992d61b9920b3669bb2a4685f Mon Sep 17 00:00:00 2001 From: Dries De Peuter Date: Tue, 11 Apr 2023 10:06:36 +0200 Subject: [PATCH] fix: Add missing build files --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7c1c029..c82a581 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,10 +8,10 @@ COPY ./go.* . RUN go mod download # Copy the go source -COPY ./server/main.go main.go +COPY ./server/*.go ./ # Build -RUN CGO_ENABLED=0 GOOS=linux go build -a -o well-known main.go +RUN CGO_ENABLED=0 GOOS=linux go build -a -o well-known ./ FROM alpine AS downloader