2023-03-03 16:44:40 +00:00
|
|
|
FROM node:alpine
|
|
|
|
|
2023-03-03 18:37:06 +00:00
|
|
|
RUN apk add --no-cache python3
|
|
|
|
|
2023-03-03 16:44:40 +00:00
|
|
|
RUN mkdir -p /usr/src/preservetube/backend
|
|
|
|
WORKDIR /usr/src/preservetube/backend
|
|
|
|
|
|
|
|
COPY . /usr/src/preservetube/backend
|
|
|
|
RUN yarn
|
|
|
|
|
2024-03-09 08:00:09 +00:00
|
|
|
RUN wget https://github.com/yt-dlp/yt-dlp/releases/download/2023.12.30/yt-dlp -q
|
2023-03-03 16:44:40 +00:00
|
|
|
RUN chmod +x yt-dlp
|
|
|
|
|
|
|
|
CMD ["node", "index.js"]
|