Spaces:
Running
Running
File size: 291 Bytes
6bc1af4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM node:20-bullseye
WORKDIR /app
COPY package*.json ./
RUN npm install && \
wget -O /usr/local/bin/yt-dlp https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp && \
chmod a+rx /usr/local/bin/yt-dlp && \
hash -r
COPY . .
EXPOSE 3000
CMD ["node", "index.js"] |