FROM node:lts-alpine as builder
-RUN apk add --no-cache --virtual .gyp \
- build-base \
- python3
-
# Build simulator
WORKDIR /usr/builder
COPY .npmrc 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
COPY docker/authorization-tags.json ./src/assets/authorization-tags.json
-RUN npm set progress=false && npm config set depth 0 && npm cache clean --force && npm install
-RUN npm run build
+RUN set -ex \
+ && apk add --no-cache --virtual .gyp build-base python3 \
+ && npm set progress=false \
+ && npm config set depth 0 \
+ && npm cache clean --force \
+ && npm clean-install \
+ && npm run build \
+ && apk del .gyp
# Build simulator dashboard
WORKDIR /usr/builder/webui
COPY 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
+RUN set -ex \
+ && npm set progress=false \
+ && npm config set depth 0 \
+ && npm cache clean --force \
+ && npm clean-install \
+ && npm run build
FROM node:lts-alpine
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
+RUN set -ex \
+ && chmod +x /start.sh \
+ && chmod +x /autoconfig.sh
CMD /autoconfig.sh && /start.sh