Arrange Dockerfile lines

Report a typo

Sort the following to make a Dockerfile that copies demo.txt file to /tmp directory. Assume ENTRYPOINT is the last line.

Put the items in the correct order
COPY demo.txt IMAGE_DESTINATION
ENV IMAGE_DESTINATION="/tmp"
FROM ubuntu:22.04
ENTRYPOINT ["ls", "/tmp"]
___

Create a free account to access the full topic