From 0c32b6dcd160bbd935009470d8253c7df66b4ea0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Casta=C3=B1o=20Arteaga?= Date: Fri, 13 Sep 2024 13:22:35 +0200 Subject: [PATCH] Bump alpine to 3.20.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Sergio CastaƱo Arteaga --- .github/dependabot.yml | 2 +- crates/cli/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 93bb337a..ea61a42c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -37,7 +37,7 @@ updates: - "*" - package-ecosystem: "docker" - directory: "/" + directory: "/crates/cli" schedule: interval: "weekly" groups: diff --git a/crates/cli/Dockerfile b/crates/cli/Dockerfile index d69bc441..42dbe1f7 100644 --- a/crates/cli/Dockerfile +++ b/crates/cli/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /landscape2/crates/cli RUN cargo build --release # Final stage -FROM alpine:3.20.1 +FROM alpine:3.20.3 RUN addgroup -S landscape2 && adduser -S landscape2 -G landscape2 RUN apk --no-cache add bash chromium font-ubuntu USER landscape2