You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
188 B

  1. FROM node:13.2-alpine
  2. WORKDIR /app
  3. COPY . /app/
  4. RUN apk add -U git python3 make g++ \
  5. && npm install -g npm@latest \
  6. && npm install \
  7. && npm run build \
  8. && apk del git make g++