test-project/container/Dockerfile

7 lines
104 B
Docker
Raw Normal View History

2023-04-20 22:01:59 +00:00
FROM ubuntu:22.04
2023-04-21 15:16:49 +00:00
COPY ./file.txt /file.txt
2023-04-21 15:20:55 +00:00
COPY ./file.txt /file2.txt
2023-04-21 15:16:49 +00:00
2023-04-20 22:01:59 +00:00
CMD ["sh", "-c", "echo Hello"]