Files
my-app/build-image.sh
Patrick 0fd1c9e922
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
add docker file and build script
2025-11-02 14:41:59 +01:00

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"