From ae5fb58320932a0f9479e1ebc0ac0c0c014438c7 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Tue, 30 Jan 2024 22:15:11 +0800 Subject: [PATCH] ci: refactor Dockerfile location and CI paths - Update the Dockerfile path in GitHub Actions workflow from `Dockerfile` to `docker/Dockerfile` - Move the `Dockerfile` to the `docker` directory Signed-off-by: Bo-Yi Wu --- .github/workflows/docker.yml | 2 +- Dockerfile => docker/Dockerfile | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Dockerfile => docker/Dockerfile (100%) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 28f9f6d..448f325 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -49,7 +49,7 @@ jobs: with: context: . platforms: linux/amd64,linux/arm,linux/arm64 - file: Dockerfile + file: docker/Dockerfile push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.docker-meta.outputs.tags }} labels: ${{ steps.docker-meta.outputs.labels }} diff --git a/Dockerfile b/docker/Dockerfile similarity index 100% rename from Dockerfile rename to docker/Dockerfile