first release

This commit is contained in:
genio
2021-11-18 21:46:38 +01:00
parent 9ea28f281a
commit f0034c57d8
14 changed files with 182 additions and 62 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:14
VOLUME /downloads
WORKDIR /usr/src/yt-dlp-webui
COPY package*.json ./
RUN npm install
RUN npm run build
COPY . .
EXPOSE 3022
CMD [ "node" , "./server.js" ]