Created
June 23, 2023 20:53
-
-
Save terenty-rezman/3fe72a6e3c58c3306b95f28e3576a2ba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 | |
RUN echo 1 | |
RUN echo "#!/bin/bash" > test.sh && \ | |
echo "echo x" >> test.sh && \ | |
chmod +x test.sh && \ | |
./test.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment