diff --git a/.github/workflows/alpine.yml b/.github/workflows/alpine.yml index de625e18..137365b2 100644 --- a/.github/workflows/alpine.yml +++ b/.github/workflows/alpine.yml @@ -50,7 +50,7 @@ jobs: - name: Build container image uses: docker/build-push-action@v5 with: - file: alpine/Dockerfile + context: alpine platforms: linux/amd64,linux/arm64 push: ${{ github.base_ref == null }} cache-from: type=gha,scope=alpine diff --git a/.github/workflows/dev-tools.yml b/.github/workflows/dev-tools.yml index 00bc3eb9..c63f38be 100644 --- a/.github/workflows/dev-tools.yml +++ b/.github/workflows/dev-tools.yml @@ -47,7 +47,6 @@ jobs: uses: docker/build-push-action@v5 with: context: dev-tools - file: dev-tools/Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.base_ref == null }} cache-from: type=gha,scope=dev-tools diff --git a/.github/workflows/mu-plugins.yml b/.github/workflows/mu-plugins.yml index fcf3490a..6624aecd 100644 --- a/.github/workflows/mu-plugins.yml +++ b/.github/workflows/mu-plugins.yml @@ -52,7 +52,6 @@ jobs: uses: docker/build-push-action@v5 with: context: mu-plugins - file: mu-plugins/Dockerfile platforms: linux/amd64,linux/arm64 push: ${{ github.base_ref == null }} tags: | diff --git a/.github/workflows/nginx.yml b/.github/workflows/nginx.yml index b903b206..a7ab4a1c 100644 --- a/.github/workflows/nginx.yml +++ b/.github/workflows/nginx.yml @@ -50,7 +50,7 @@ jobs: - name: Build container image uses: docker/build-push-action@v5 with: - file: nginx/Dockerfile + context: nginx platforms: linux/amd64,linux/arm64 cache-from: type=gha,scope=nginx cache-to: type=gha,mode=max,scope=nginx diff --git a/.github/workflows/skeleton.yml b/.github/workflows/skeleton.yml index 35ff142c..90be73f4 100644 --- a/.github/workflows/skeleton.yml +++ b/.github/workflows/skeleton.yml @@ -47,7 +47,7 @@ jobs: - name: Build container image uses: docker/build-push-action@v5 with: - file: skeleton/Dockerfile + context: skeleton platforms: linux/amd64,linux/arm64 push: ${{ github.base_ref == null }} tags: | diff --git a/.github/workflows/traefik.yml b/.github/workflows/traefik.yml index 24a0a9a6..f9ce8a95 100644 --- a/.github/workflows/traefik.yml +++ b/.github/workflows/traefik.yml @@ -50,7 +50,7 @@ jobs: - name: Build container image uses: docker/build-push-action@v5 with: - file: traefik/Dockerfile + context: traefik platforms: linux/amd64,linux/arm64 push: ${{ github.base_ref == null }} cache-from: type=gha,scope=traefik diff --git a/nginx/Dockerfile b/nginx/Dockerfile index eabc09e1..bf7d0ad5 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -2,4 +2,4 @@ FROM nginx:1.25.2-alpine@sha256:7272a6e0f728e95c8641d219676605f3b9e4759abbdb6b39 RUN apk add --no-cache shadow -COPY nginx/default.conf /etc/nginx/conf.d/default.conf +COPY default.conf /etc/nginx/conf.d/default.conf