All checks were successful
checks / Set up Node and other necessary dependencies for Frontend Tests and Build (push) Successful in 12s
checks / Set up Java for Backend Tests and Build (push) Successful in 15s
Gitea Actions Demo / Explore-Gitea-Actions-2 (pull_request) Successful in 3s
checks / Set up Node and other necessary dependencies for Frontend Tests and Build (pull_request) Successful in 12s
checks / Set up Java for Backend Tests and Build (pull_request) Successful in 11s
9 lines
258 B
Bash
9 lines
258 B
Bash
#! /bin/bash
|
|
set -e # Exit immediately if a command exits with a non-zero status
|
|
|
|
export $(grep -v '^#' C:/atrizult/projects/.env | xargs)
|
|
|
|
#Build
|
|
docker buildx build --no-cache -t eberen/services:backend-${VERSION} .
|
|
echo "Docker Image Built Successfully"
|