Dockerfile 200 B

12345678910111213
  1. FROM node:18
  2. WORKDIR /root/coriolis-web
  3. COPY ./ .
  4. ENV NODE_OPTIONS=--openssl-legacy-provider
  5. RUN yarn install --production --no-progress
  6. RUN yarn build
  7. ENTRYPOINT [ "yarn", "start" ]
  8. EXPOSE 3000