5 lines
92 B
Docker
5 lines
92 B
Docker
FROM alpine:latest
|
|
LABEL ci-demo="true"
|
|
COPY hello.txt /hello.txt
|
|
CMD ["cat", "/hello.txt"]
|