schedulord-frontend/Dockerfile

11 lines
369 B
Docker
Raw Normal View History

2022-06-08 17:35:09 +00:00
#FROM - Image to start building on.
FROM ubuntu:14.04
#MAINTAINER - Identifies the maintainer of the dockerfile.
MAINTAINER jesse.isler@gmail.com
#RUN - Runs a command in the container
RUN echo "Hello world" > /tmp/hello_world.txt
#CMD - Identifies the command that should be used by default when running the image as a container.
CMD ["cat", "/tmp/hello_world.txt"]