centrer-image-frontend/build-local.sh
Francois Pelletier 94fe4e9746 Initial commit
2023-05-07 13:49:00 -04:00

11 lines
300 B
Bash

#!/bin/bash
# Build the Docker image with the "local/centrer-image-frontend" tag
docker build -t local/centrer-image-frontend .
# Check if the Docker image was built successfully
if [ $? -eq 0 ]; then
echo "Docker image built successfully."
else
echo "Error: Docker image build failed."
fi