golang-vendor-private/Dockerfile
pips 0592e6aa27
All checks were successful
ci/woodpecker/push/build/1 Pipeline was successful
ci/woodpecker/push/build/3 Pipeline was successful
ci/woodpecker/push/build/2 Pipeline was successful
feat(docker): define default GO_VERSION
2025-07-30 22:33:14 +02:00

7 lines
117 B
Docker

ARG GO_VERSION=latest
FROM golang:${GO_VERSION}
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]