From 150d454b7bacfd0d8be21226b1ed89ae047f4135 Mon Sep 17 00:00:00 2001 From: spilin Date: Wed, 18 Dec 2024 12:36:20 +0200 Subject: [PATCH] Inlcude docker-cli dep into Dockerfile --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5411676..475d58c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,10 +20,13 @@ FROM alpine:3.17 WORKDIR /app -# Install runtime dependencies -RUN apk add --no-cache ca-certificates curl +# Install runtime dependencies including docker cli +RUN apk add --no-cache \ + ca-certificates \ + curl \ + docker-cli -# Copy the binary and goose from the builder stage +# Copy the binary from the builder stage COPY --from=builder /app/app /app/app # Ensure the binary is executable