FROM node:16.19.1-alpine3.17 COPY web /code WORKDIR /code RUN set -ex \ && npm i \ && npm run build ENTRYPOINT npm start