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

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