Remove Docker

This commit is contained in:
bingus_violet 2024-07-29 21:20:49 -05:00
parent 26164f4004
commit 33f45c0965
2 changed files with 0 additions and 19 deletions

View file

@ -1,3 +0,0 @@
node_modules
npm-debug.log
cached

View file

@ -1,16 +0,0 @@
FROM node:20
RUN apt-get update \
&& apt install python3 pip ffmpeg -y \
&& python3 -m pip install -U yt-dlp --break-system-packages
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "node", "index.js" ]