2020-04-12 00:59:35 +05:30
|
|
|
# Debian GNU/Linux 10 (1.13.10-buster)
|
2024-09-03 01:15:23 +03:00
|
|
|
FROM golang:latest
|
2020-04-12 00:59:35 +05:30
|
|
|
|
|
|
|
# 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
|
2021-04-11 14:16:41 -07:00
|
|
|
ENTRYPOINT [ "go", "run", "/usr/bin/entrypoint.go" ]
|