# Additional documentation.
All checks were successful
Build docker image / build_docker_image (push) Successful in 4m1s

This commit is contained in:
2025-05-03 10:54:14 +02:00
parent e9b9f3c9aa
commit dcddefa4cd

View File

@@ -1,14 +1,20 @@
#!/bin/bash #!/bin/bash
echo This is a sample build script, if the workflow cannot be used. # ---------------------------------------------------------------------------
echo Please customize the repository address/name for your own. # setting constants
PACKAGE_REPOSITORY=proxima.goliath.hu/proxima/backend PACKAGE_REPOSITORY=proxima.goliath.hu/proxima/backend
BUILD_TAG=nginx BUILD_TAG=nginx
UID=$(id -u) UID=$(id -u)
GID=$(id -g) GID=$(id -g)
# ---------------------------------------------------------------------------
clear
echo This is a sample build script, if the workflow cannot be used.
echo Please customize the repository address/name for your own.
echo
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
echo Building "${BUILD_TAG}" package .. echo Building "${BUILD_TAG}" package ..
echo echo
@@ -53,6 +59,5 @@ echo Changing back to build directory...
popd > /dev/null popd > /dev/null
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
echo Done. echo Done.