2024-10-09 15:19:55 +02:00

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