12 lines
244 B
Bash
Executable File
12 lines
244 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Build the Docker image
|
|
echo "Building the Docker image..."
|
|
if sudo docker build -t myp-rp:latest . -f Containerfile; then
|
|
echo "Docker image built successfully."
|
|
else
|
|
echo "Failed to build the Docker image."
|
|
exit 1
|
|
fi
|
|
|