From 083575a447b82efa5d23d99bc548cb3f0fb9062c Mon Sep 17 00:00:00 2001 From: Ciro Mota Date: Wed, 14 Aug 2024 15:39:42 -0300 Subject: [PATCH] fix: Update base image to Wolfi and update dependencies versions --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d64e8a9..8adbc80 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,14 @@ -FROM alpine:3.20 +# hadolint ignore=DL3006 +# hadolint ignore=DL3007 +FROM cgr.dev/chainguard/wolfi-base:latest WORKDIR /home COPY ./scripts /home ENV LINODE_CLI_TOKEN= -RUN apk update \ - && apk add bash=5.2.26-r0 python3=3.12.3-r1 py3-pip=24.0-r2 --no-cache\ - && pip3 install linode-cli==5.49.1 --no-cache-dir --root-user-action=ignore --break-system-packages \ +RUN apk add bash=5.2.32-r2 python3=3.12.3-r1 py3.12-pip=24.2-r1 --no-cache \ + && pip3 install linode-cli==5.51.0 --no-cache-dir --root-user-action=ignore --break-system-packages \ && chmod +x /home/dalek-linode.sh ENTRYPOINT ["/bin/bash"]