5 lines
84 B
Docker
5 lines
84 B
Docker
# Dockerfile
|
|
FROM alpine:latest
|
|
COPY hello.txt /hello.txt
|
|
CMD ["cat", "/hello.txt"]
|