From 50cea0df5091d6ef8c3a4318e62445dfd078bfe7 Mon Sep 17 00:00:00 2001 From: dojyorin Date: Thu, 11 Jul 2024 02:41:04 +0900 Subject: [PATCH] fix args. --- src/alpine.dockerfile | 2 +- src/distroless.dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/alpine.dockerfile b/src/alpine.dockerfile index 482a2f6..b3f6f15 100644 --- a/src/alpine.dockerfile +++ b/src/alpine.dockerfile @@ -2,7 +2,7 @@ FROM alpine:latest AS deno ARG DENO_VERSION -RUN apk --update --no-cache add curl +RUN apk add -Uu --no-cache curl RUN curl -Ls https://github.com/denoland/deno/releases/download/${DENO_VERSION}/deno-$(arch)-unknown-linux-gnu.zip | unzip -pq - 'deno' > /tmp/deno FROM gcr.io/distroless/cc-debian12:latest AS cc diff --git a/src/distroless.dockerfile b/src/distroless.dockerfile index 1decc37..f77f66e 100644 --- a/src/distroless.dockerfile +++ b/src/distroless.dockerfile @@ -2,7 +2,7 @@ FROM alpine:latest AS deno ARG DENO_VERSION -RUN apk --update --no-cache add curl +RUN apk add -Uu --no-cache curl RUN curl -Ls https://github.com/denoland/deno/releases/download/${DENO_VERSION}/deno-$(arch)-unknown-linux-gnu.zip | unzip -pq - 'deno' > /tmp/deno FROM gcr.io/distroless/cc-debian12:latest AS cc