FROM alpine:3.14 RUN apk update && apk add --no-cache nodejs npm make g++ git WORKDIR /app COPY . . RUN npm install express --save CMD ["node", "src/main.js"] EXPOSE 8080