From 8f28548059fef21320909dde40606abb80e6f970 Mon Sep 17 00:00:00 2001 From: marcobaobao Date: Thu, 12 Jan 2023 23:39:42 +0100 Subject: [PATCH] update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d44cde5..d41c0ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN npm i RUN npm run build # install go dependencies WORKDIR /usr/src/yt-dlp-webui -RUN npm go build -o yt-dlp-webui +RUN go build -o yt-dlp-webui # expose and run EXPOSE 3033 CMD [ "yt-dlp-webui" , "--out", "./downloads" ]