mirror of
https://github.com/geerlingguy/ansible-for-devops.git
synced 2024-05-19 06:50:03 +00:00
7 lines
151 B
Docker
7 lines
151 B
Docker
# Build an example Docker container image.
|
|
FROM busybox
|
|
LABEL maintainer="Jeff Geerling"
|
|
|
|
# Run a command when the container starts.
|
|
CMD ["/bin/true"]
|