const enginesNodeVersion = require('./package.json').engines.node;
-if (SemVer.satisfies(process.version, enginesNodeVersion) === false) {
- console.error(
- chalk.red(
- `Required node version ${enginesNodeVersion} not satisfied with current version ${process.version}.`
- )
- );
- // eslint-disable-next-line no-process-exit
- process.exit(1);
+/**
+ *
+ */
+function checkNodeVersion() {
+ if (SemVer.satisfies(process.version, enginesNodeVersion) === false) {
+ console.error(
+ chalk.red(
+ `Required node version ${enginesNodeVersion} not satisfied with current version ${process.version}.`
+ )
+ );
+ // eslint-disable-next-line no-process-exit
+ process.exit(1);
+ }
}
+
+checkNodeVersion();
+
+module.exports = { checkNodeVersion };
FROM node:lts-alpine as builder
-WORKDIR /usr/builder
-
-COPY package.json package-lock.json prepare.js ./
-
-RUN npm set progress=false && npm config set depth 0 && npm cache clean --force
RUN apk add --no-cache --virtual .gyp \
build-base \
- python3 \
- && npm install \
- && apk del .gyp
-COPY tsconfig.json rollup.config.mjs ./
+ python3
+
+# Build simulator
+WORKDIR /usr/builder
+COPY package.json package-lock.json tsconfig.json rollup.config.mjs prepare.js build-requirements.js ./
COPY src ./src
COPY docker/config.json ./src/assets/config.json
+RUN npm set progress=false && npm config set depth 0 && npm cache clean --force && npm install
+RUN npm run build
+
+# Build simulator dashboard
+WORKDIR /usr/builder/webui
+COPY src/ui/web ./
+RUN npm set progress=false && npm config set depth 0 && npm cache clean --force && npm install
RUN npm run build
+RUN apk del .gyp
+
FROM node:lts-alpine
ARG STACK_TRACE_LIMIT
ENV NODE_OPTIONS="--stack-trace-limit=${STACK_TRACE_LIMIT} --max-old-space-size=${MAX_OLD_SPACE_SIZE}"
+COPY --from=builder /usr/builder/webui ./webui
COPY --from=builder /usr/builder/node_modules ./node_modules
COPY --from=builder /usr/builder/dist ./dist
COPY README.md LICENSE ./
+COPY docker/start.sh /start.sh
COPY docker/autoconfig.sh /autoconfig.sh
+RUN chmod +x /start.sh
RUN chmod +x /autoconfig.sh
-#CMD ["node", "dist/start.cjs"]
-CMD /autoconfig.sh && node -r source-map-support/register dist/start.cjs
+CMD /autoconfig.sh && /start.sh