myheats

Live heats, scoring and leaderboard for sport events
git clone https://git.in0rdr.ch/myheats.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

Dockerfile (154B)


      1 FROM docker.io/node:18-alpine
      2 
      3 WORKDIR /app
      4 COPY . /app
      5 
      6 RUN npm ci
      7 
      8 ENV NODE_ENV production
      9 
     10 # run nodejs api/backend server
     11 CMD [ "npm", "run", "api" ]