Install zip as part of image build.

This commit is contained in:
Seraphim R. Pardee 2024-09-23 21:55:45 -04:00
parent 0ecb3d9aa5
commit 8f2ae2a38c

View File

@ -1,6 +1,9 @@
# Debian GNU/Linux 10 (1.13.10-buster) # Debian GNU/Linux 10 (1.13.10-buster)
FROM golang:latest FROM golang:latest
# add zip
RUN apt install zip
# copy entrypoint file # copy entrypoint file
COPY entrypoint.go /usr/bin/entrypoint.go COPY entrypoint.go /usr/bin/entrypoint.go