advent-of-code

Entries to advent of code, multiple years
git clone git://git.finwo.net/misc/advent-of-code
Log | Files | Refs

Dockerfile (113B)


      1 FROM node:lts-alpine
      2 
      3 COPY . /app
      4 WORKDIR /app
      5 RUN npm install
      6 RUN npm run build --if-present
      7 
      8 CMD npm run start