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
326 B
Docker

# My first docker hope it isn't too bad :)
FROM node:12
WORKDIR /var/www/jeffdownloader/
RUN git clone https://gitlab.com/LoicBersier/jeff-downloader.git .
RUN npm install
RUN npm i -g @adonisjs/cli
RUN cp .env.example .env
RUN echo "[]" > proxy/proxy.json
RUN adonis key:generate
EXPOSE 3333
CMD ["adonis", "serve"]