diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0b75da..1edead3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: uses: docker/setup-qemu-action@v3 - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b98fb6..4b25d9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1] - 2024-07-31 + +### Fixed + +- Resolved Docker build warning regarding cases of the `FROM x AS y` format + ## [0.4.0] - 2024-06-10 ### Changed @@ -18,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- dependabot was target the wrong branch for updates +- dependabot was targeting the wrong branch for updates ## [0.3.0] diff --git a/Dockerfile b/Dockerfile index b93f092..57c3f89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Purpose: Installs s6-overlay and rootfs # Comments: # - Don't leave anything extra in here either -FROM docker.io/alpine:3.20 as s6-overlay-base +FROM docker.io/alpine:3.20 AS s6-overlay-base WORKDIR /usr/src/s6 @@ -58,7 +58,7 @@ COPY ./rootfs / # Purpose: The final image # Comments: # - Don't leave anything extra in here -FROM s6-overlay-base as main-app +FROM s6-overlay-base AS main-app RUN set -eux \ && echo "Installing dnsmasq" \