We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b47d05e commit d9c32e1Copy full SHA for d9c32e1
testkit/Dockerfile
@@ -1,6 +1,7 @@
1
FROM ubuntu:20.04
2
3
ARG NODE_VERSION=10
4
+ARG DENO_VERSION=1.19.3
5
6
ENV DEBIAN_FRONTEND noninteractive
7
ENV NODE_OPTIONS --max_old_space_size=4096 --use-openssl-ca
@@ -47,7 +48,7 @@ COPY CustomCAs/* /usr/local/share/custom-ca-certificates/
47
48
RUN update-ca-certificates --verbose
49
50
# Add Deno
-RUN curl -fsSL https://deno.land/x/install/install.sh | sh
51
+RUN curl -fsSL https://deno.land/x/install/install.sh | sh -s v$DENO_VERSION
52
RUN mv /root/.deno/bin/deno /usr/bin/
53
# Using System CA in Deno
54
ENV DENO_TLS_CA_STORE=system
0 commit comments