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
211 B

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