7 lines
117 B
Docker
7 lines
117 B
Docker
ARG GO_VERSION=latest
|
|
|
|
FROM golang:${GO_VERSION}
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|