first commit
This commit is contained in:
14
Dockerfile.bash
Normal file
14
Dockerfile.bash
Normal 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"]
|
||||
Reference in New Issue
Block a user