From 38b81fda9a187d966f87fa21c8066fd78fb6e56f Mon Sep 17 00:00:00 2001 From: ducoterra Date: Sat, 19 Apr 2025 19:07:53 -0400 Subject: [PATCH] fix COPY for ddns service not working in Docker --- .gitea/workflows/ddns.yaml | 2 +- .gitea/workflows/distoolbox.yaml | 4 ++-- active/podman_ddns/Containerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ddns.yaml b/.gitea/workflows/ddns.yaml index b60e21a..515064e 100644 --- a/.gitea/workflows/ddns.yaml +++ b/.gitea/workflows/ddns.yaml @@ -27,4 +27,4 @@ jobs: file: ${{ gitea.workspace }}/active/podman_ddns/Containerfile push: true tags: "gitea.reeseapps.com/services/ddns:latest,gitea.reeseapps.com/services/ddns:${{gitea.sha}}" - no-cache: false + no-cache: true diff --git a/.gitea/workflows/distoolbox.yaml b/.gitea/workflows/distoolbox.yaml index fc00874..94bffbd 100644 --- a/.gitea/workflows/distoolbox.yaml +++ b/.gitea/workflows/distoolbox.yaml @@ -28,7 +28,7 @@ jobs: target: cpu push: true tags: "gitea.reeseapps.com/services/arch-toolbox:latest,gitea.reeseapps.com/services/arch-toolbox:${{gitea.sha}}" - no-cache: false + no-cache: true - name: Build and push AMD GPU Docker image uses: https://github.com/docker/build-push-action@v5 with: @@ -37,4 +37,4 @@ jobs: target: amdgpu push: true tags: "gitea.reeseapps.com/services/arch-toolbox-amdgpu:latest,gitea.reeseapps.com/services/arch-toolbox-amdgpu:${{gitea.sha}}" - no-cache: false \ No newline at end of file + no-cache: true \ No newline at end of file diff --git a/active/podman_ddns/Containerfile b/active/podman_ddns/Containerfile index 313436f..47fb860 100644 --- a/active/podman_ddns/Containerfile +++ b/active/podman_ddns/Containerfile @@ -13,7 +13,7 @@ RUN sh /uv-installer.sh && rm /uv-installer.sh ENV PATH="/root/.local/bin/:$PATH" # Copy the project into the image -ADD update.py uv.lock pyproject.toml /app +COPY update.py uv.lock pyproject.toml /app/ # Sync the project into a new environment, using the frozen lockfile WORKDIR /app