mirror of https://github.com/docker/compose.git
6 lines
81 B
Plaintext
6 lines
81 B
Plaintext
|
FROM alpine
|
||
|
|
||
|
COPY --from=base /hello.txt /hello.txt
|
||
|
|
||
|
CMD [ "cat", "/hello.txt" ]
|