From 2ac74d5d7627e451dcdc8e2d50f5448e80af1ecd Mon Sep 17 00:00:00 2001 From: soul-walker <31162815+soul-walker@users.noreply.github.com> Date: Thu, 31 Oct 2024 15:56:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9CICD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/cicd_local_test.yml | 2 +- manager/Dockerfile => Dockerfile-manager | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename manager/Dockerfile => Dockerfile-manager (93%) diff --git a/.gitea/workflows/cicd_local_test.yml b/.gitea/workflows/cicd_local_test.yml index 849a27d..014eb3f 100644 --- a/.gitea/workflows/cicd_local_test.yml +++ b/.gitea/workflows/cicd_local_test.yml @@ -47,7 +47,7 @@ jobs: uses: https://gitea.joylink.club/docker/build-push-action@v5 with: context: . - file: ./Dockerfile + file: ./Dockerfile-manager push: true tags: | gitea.joylink.club/joylink/rtsam:lt diff --git a/manager/Dockerfile b/Dockerfile-manager similarity index 93% rename from manager/Dockerfile rename to Dockerfile-manager index 9485a0a..b6ffc7d 100644 --- a/manager/Dockerfile +++ b/Dockerfile-manager @@ -13,7 +13,7 @@ RUN cp /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone WORKDIR /rtsa COPY ./target/x86_64-unknown-linux-musl/release/manager ./rtsa_m -COPY ./conf/* ./conf/ +COPY ./manager/conf/* ./conf/ COPY ./migrations/* ./migrations/ EXPOSE 8765