From 3097834f0f77b316e8687165281934139192e787 Mon Sep 17 00:00:00 2001 From: JR40159 <126243293+JR40159@users.noreply.github.com> Date: Wed, 26 Apr 2023 16:51:14 +0100 Subject: [PATCH] Update typescript version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 92c7ea1..7f33c77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ RUN apt-get -y update \ RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - RUN apt -y install nodejs -ARG TYPESCRIPT_VERSION="4.9.4" +ARG TYPESCRIPT_VERSION="5.0.4" RUN npm install -g typescript@${TYPESCRIPT_VERSION} RUN ln -sf "${JAVA_HOME}/bin/java" "/usr/local/bin/java" \