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