Compare commits

..

No commits in common. "master" and "v2" have entirely different histories.
master ... v2

View File

@ -1,6 +1,8 @@
# Alpine 3.20 # Debian GNU/Linux 10 (1.13.10-buster)
FROM golang:1.23.1-alpine3.20 FROM golang:latest
RUN apk add --no-cache zip git
# 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
@ -9,4 +11,4 @@ COPY entrypoint.go /usr/bin/entrypoint.go
RUN chmod +x /usr/bin/entrypoint.go RUN chmod +x /usr/bin/entrypoint.go
# set entrypoint command # set entrypoint command
ENTRYPOINT [ "go", "run", "/usr/bin/entrypoint.go"] ENTRYPOINT [ "go", "run", "/usr/bin/entrypoint.go" ]