auto/Dockerfile

14 lines
297 B
Docker
Raw Normal View History

2023-03-28 15:52:17 +01:00
FROM node:alpine
RUN apk add --no-cache python3
RUN mkdir -p /usr/src/preservetube/auto
WORKDIR /usr/src/preservetube/auto
COPY . /usr/src/preservetube/auto
RUN yarn
2023-10-04 15:30:23 +01:00
RUN wget https://github.com/yt-dlp/yt-dlp/releases/download/2023.09.24/yt-dlp -q
2023-03-28 15:52:17 +01:00
RUN chmod +x yt-dlp
CMD ["node", "index.js"]