Skip to content

Commit

Permalink
fix args. (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
dojyorin authored Jul 10, 2024
1 parent 29722d0 commit f23634b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/alpine.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/distroless.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f23634b

Please sign in to comment.