From 481ef09fef8a03a1c73188e1fdb51c13bba0e237 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2024 01:57:12 +0000 Subject: [PATCH 1/2] Bump docker/build-push-action from 6.9.0 to 6.10.0 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.9.0 to 6.10.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/4f58ea79222b3b9dc2c8bbdd6debcef730109a75...48aba3b46d1b1fec4febb7c5d0c644b249a11355) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d9970e..6a7df57 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: install: true - name: Build Docker image and store in cache - uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 + uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 with: context: . push: false From fcf75fdb1fe7789ea954f2ecb74f4dc1ce31fa0c Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Sat, 30 Nov 2024 18:37:41 -0800 Subject: [PATCH 2/2] Update Dockerfile Make the linter happy by matching `AS` case to `FROM` case. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cc290fa..d61e898 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.72-slim as base +FROM rust:1.72-slim AS base # Setup build environment RUN apt-get update && \ @@ -20,4 +20,4 @@ WORKDIR /opt/representer COPY --from=base /representer/bin /opt/representer/bin -ENTRYPOINT ["bin/run.sh"] \ No newline at end of file +ENTRYPOINT ["bin/run.sh"]