FROM node:11.6-alpine LABEL maintainer="Stanisław Gołębiewski " RUN apk update && \ apk upgrade && \ apk add --no-cache tini \ make \ python2 \ g++ \ gcc \ libgcc \ libstdc++ \ linux-headers \ python WORKDIR /opt COPY ./bk_webapp ./app WORKDIR /opt/app RUN npm install && npm install -g serve RUN npm run build # ENV PATH /data/node_modules/.bin:$PATH # WORKDIR /opt/app ENTRYPOINT ["/sbin/tini", "--"] CMD serve -l tcp://0.0.0.0:3000 -s build