diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index c92237b..d94f540 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -1,10 +1,10 @@ ---- name: Build and Push Domain Server Images on: push: branches: - main - testing + workflow_dispatch: # Add this line to enable manual triggering jobs: build-and-push: runs-on: @@ -38,8 +38,6 @@ jobs: run: > podman tag ghcr.io/${{ github.repository }}/domain-server:latest docker.io/${{ secrets.DOCKERHUB_USERNAME }}/domain-server:latest podman push docker.io/${{ secrets.DOCKERHUB_USERNAME }}/domain-server:latest - - name: Clean up run: > podman system prune - diff --git a/Dockerfile.build b/Dockerfile.build index a41dd6a..fc95cf3 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,4 +1,4 @@ -# Docker environment for building Overte server +# Docker environment for building Overte server (Updated 02/07/2024) FROM ubuntu:22.04 ARG DEBIAN_FRONTEND=noninteractive diff --git a/Dockerfile.runtime b/Dockerfile.runtime index 492ec00..faa5528 100644 --- a/Dockerfile.runtime +++ b/Dockerfile.runtime @@ -1,4 +1,4 @@ -# Overte Server runtime image. domain-server-builder must be built first. +# Overte Server runtime image. domain-server-builder must be built first. (Updated 02/07/2024) FROM ghcr.io/overte-org/overte-domain-server-docker/domain-server-builder:latest as build LABEL maintainer="OfficialR3ido101 (https://github.com/OfficialR3ido101)"