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 1e275e3 commit 156dd2cCopy full SHA for 156dd2c
testkit/Dockerfile
@@ -1,10 +1,10 @@
1
-FROM ubuntu:20.04
+FROM ubuntu:24.04
2
3
-ARG NODE_VERSION=10
4
-ARG DENO_VERSION=1.37.2
+ARG NODE_VERSION=18
+ARG DENO_VERSION=2.2.11
5
6
-ENV DEBIAN_FRONTEND noninteractive
7
-ENV NODE_OPTIONS --max_old_space_size=4096 --use-openssl-ca
+ENV DEBIAN_FRONTEND=noninteractive
+ENV NODE_OPTIONS="--max_old_space_size=4096 --use-openssl-ca"
8
9
# Configuring NodeJS version
10
RUN apt-get clean
@@ -13,7 +13,7 @@ RUN apt-get update && \
13
apt-get upgrade -y && \
14
apt-get install -y curl
15
16
-RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION:=10}.x | bash -
+RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION:-18}.x | bash -
17
18
RUN apt-get update && \
19
0 commit comments