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

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