From 23265ef375c710989dacbe748e2126a7dcd811f0 Mon Sep 17 00:00:00 2001 From: marcobaobao Date: Sat, 5 Nov 2022 15:40:28 +0100 Subject: [PATCH] bump node to v18 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7c6ece3..5ce79e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine3.16 +FROM node:18-alpine RUN mkdir -p /usr/src/yt-dlp-webui/download VOLUME /usr/src/yt-dlp-webui/downloads WORKDIR /usr/src/yt-dlp-webui @@ -9,7 +9,7 @@ RUN apk add curl wget psmisc python3 ffmpeg COPY . . RUN chmod +x ./fetch-yt-dlp.sh # install node dependencies -RUN npm +RUN npm i RUN npm run build RUN npm run build-server RUN npm run fetch