You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jeff-downloader/Dockerfile

21 lines
356 B
Docker

# My first docker hope it isn't too bad :)
FROM node:12
WORKDIR /var/www/jeffdownloader/
RUN git clone https://git.namejeff.xyz/Supositware/jeff-downloader.git .
RUN npm install
RUN npm i -g pm2
RUN cp .env.example .env
RUN echo "[]" > proxy/proxy.json
RUN apt-get update && apt-get install -y ffmpeg
EXPOSE 3333
CMD ["pm2-runtime", "server.js"]