diff --git a/Dockerfile.webui b/Dockerfile.webui index 03a034b..e17bb6e 100644 --- a/Dockerfile.webui +++ b/Dockerfile.webui @@ -23,6 +23,7 @@ FROM scratch # Copy the webui binary from the builder stage to the final image COPY --from=builder /work/webui /webui +COPY --from=builder /etc/ssl/ /etc/ssl/ # Define the command that will be run when the container is started ENTRYPOINT ["/webui"] \ No newline at end of file diff --git a/Makefile b/Makefile index f0f509f..aa4dac1 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -GOCMD=go -IMAGE_NAME=webui +GOCMD?=go +IMAGE_NAME?=webui tests: $(GOCMD) run github.com/onsi/ginkgo/v2/ginkgo --fail-fast -v -r ./...