6 lines
120 B
Plaintext
6 lines
120 B
Plaintext
# Use a lightweight base image
|
|
FROM alpine:latest
|
|
|
|
# Set the command to print "Hello World"
|
|
CMD ["echo", "Hello World"]
|