FROM alpine:3.14 RUN apk update && apk add --no-cache nodejs npm make g++ WORKDIR /app COPY . . RUN npm install CMD ["npm", "start"] EXPOSE 8080