go-cross-build/Dockerfile

11 lines
281 B
Docker
Raw Normal View History

2020-04-11 15:29:35 -04:00
# Debian GNU/Linux 10 (1.13.10-buster)
2020-08-29 19:32:52 -04:00
FROM golang:1.15-buster
2020-04-11 15:29:35 -04:00
# copy entrypoint file
COPY entrypoint.go /usr/bin/entrypoint.go
# change mode of the entrypoint file
RUN chmod +x /usr/bin/entrypoint.go
# set entrypoint command
ENTRYPOINT [ "go", "run", "/usr/bin/entrypoint.go" ]