small fixes

This commit is contained in:
2023-10-26 17:53:39 +02:00
parent ce838b8fb0
commit 2564751405
2 changed files with 7 additions and 6 deletions

View File

@@ -1,11 +1,12 @@
FROM golang:alpine AS build
RUN apk update && \
apk add nodejs-current npm
apk add nodejs npm
COPY . /usr/src/yt-dlp-webui
WORKDIR /usr/src/yt-dlp-webui/frontend
RUN npm install
RUN npm run build