This commit is contained in:
mudler
2024-04-11 23:01:40 +02:00
parent 6528da804f
commit 84a808fb7e
2 changed files with 3 additions and 2 deletions

View File

@@ -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"]

View File

@@ -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 ./...