first commit

This commit is contained in:
2024-07-27 22:24:07 +02:00
commit 08da1f6b10
7 changed files with 110 additions and 0 deletions

14
Dockerfile.bash Normal file
View File

@@ -0,0 +1,14 @@
# Use the official Ubuntu image as the base image
FROM ubuntu:latest
# Set the working directory
WORKDIR /usr/src/app
# Copy the hello_world.sh script into the container
COPY hello_world.sh .
# Make the script executable
RUN chmod +x hello_world.sh
# Run the script
CMD ["./hello_world.sh"]