# ass Dockerfile v0.1.0 # authors: # - tycrek (https://tycrek.com/) # - Zusier (https://github.com/Zusier) # Node 14 image FROM node:14.17.3 # Set working directory WORKDIR /opt/ass/ # Copy directory files (config.json, source files etc.) COPY . ./ # Update npm to at least v7.x.x RUN npm i -g npm@>=7 # Install dependencies RUN npm i # Ensure these directories & files exist for compose volumes RUN mkdir -p /opt/ass/uploads/thumbnails/ RUN mkdir -p /opt/ass/share/ RUN touch /opt/ass/config.json RUN touch /opt/ass/auth.json RUN touch /opt/ass/data.json # Start ass CMD npm start