Skip to content

Commit f23634b

Browse files
authored
fix args. (#22)
1 parent 29722d0 commit f23634b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/alpine.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:latest AS deno
22

33
ARG DENO_VERSION
44

5-
RUN apk --update --no-cache add curl
5+
RUN apk add -Uu --no-cache curl
66
RUN curl -Ls https://github.com/denoland/deno/releases/download/${DENO_VERSION}/deno-$(arch)-unknown-linux-gnu.zip | unzip -pq - 'deno' > /tmp/deno
77

88
FROM gcr.io/distroless/cc-debian12:latest AS cc

src/distroless.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:latest AS deno
22

33
ARG DENO_VERSION
44

5-
RUN apk --update --no-cache add curl
5+
RUN apk add -Uu --no-cache curl
66
RUN curl -Ls https://github.com/denoland/deno/releases/download/${DENO_VERSION}/deno-$(arch)-unknown-linux-gnu.zip | unzip -pq - 'deno' > /tmp/deno
77

88
FROM gcr.io/distroless/cc-debian12:latest AS cc

0 commit comments

Comments
 (0)