advent-of-code

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

Dockerfile (164B)


      1 FROM node:alpine as builder
      2 COPY . /app
      3 WORKDIR /app
      4 RUN npm install
      5 RUN npm run build --if-present
      6 
      7 FROM finwo/quark:latest
      8 COPY --from=builder /app/dist /srv/www