From 3ba5a89fef77dba03f03055b3e110a87f3fd9220 Mon Sep 17 00:00:00 2001 From: SADIK KUZU Date: Sun, 1 Oct 2023 14:23:38 +0300 Subject: [PATCH 1/2] Upgrade rust version of base image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7f87007..65d50ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM rust:1.68-alpine3.17 +FROM rust:1.72-alpine3.17 LABEL "name"="Automate publishing Rust build artifacts for GitHub releases through GitHub Actions" -LABEL "version"="1.4.3" +LABEL "version"="1.4.4" LABEL "repository"="http://github.com/rust-build/rust-build.action" LABEL "maintainer"="Douile <25043847+Douile@users.noreply.github.com>" From 962ce3786816bbc1700e36f0268c59c4a2bc5662 Mon Sep 17 00:00:00 2001 From: SADIK KUZU Date: Sun, 1 Oct 2023 14:53:59 +0300 Subject: [PATCH 2/2] Remove alpine version suffix from base image In order to get latest alpine version https://hub.docker.com/_/rust/tags --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 65d50ad..8e5fd0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.72-alpine3.17 +FROM rust:1.72-alpine LABEL "name"="Automate publishing Rust build artifacts for GitHub releases through GitHub Actions" LABEL "version"="1.4.4"