From 246594d8eea780ff8c9c64d0d271a574fca51601 Mon Sep 17 00:00:00 2001 From: Daniel Lohse Date: Sat, 2 Jan 2021 18:10:09 +0100 Subject: [PATCH] Revert "Disable copying over of apis and controllers folders" This was done in #3 so that the Docker image was built, even without any APIs or controllers present. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 43d806a..78a3379 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,8 +16,8 @@ RUN go mod download # Copy the go source COPY main.go main.go -# COPY apis/ apis/ -# COPY controllers/ controllers/ +COPY apis/ apis/ +COPY controllers/ controllers/ # Build ENV CGO_ENABLED=0