6 lines
87 B
Docker
6 lines
87 B
Docker
FROM scratch
|
|
|
|
COPY ./hello-world-linux-amd64 /hello-world
|
|
|
|
ENTRYPOINT ["/hello-world"]
|