From 8f2ae2a38cf2ac6fd08c13dae16317da03d43f7e Mon Sep 17 00:00:00 2001 From: "Seraphim R. Pardee" Date: Mon, 23 Sep 2024 21:55:45 -0400 Subject: [PATCH] Install zip as part of image build. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5105a3a..c360aa4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ # Debian GNU/Linux 10 (1.13.10-buster) FROM golang:latest +# add zip +RUN apt install zip + # copy entrypoint file COPY entrypoint.go /usr/bin/entrypoint.go