diff --git a/ci/Dockerfile b/ci/Dockerfile index add7893..b295990 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -100,7 +100,7 @@ COPY ./target/atom.zip . COPY ./wrapper . RUN unzip -q atom.zip \ && composer update --no-progress --prefer-dist --ignore-platform-reqs \ - && cd /opt/nodejs && npm install --only=production && npm install -g . && cd /opt \ + && cd /opt/nodejs && npm install --only=production && bash build.sh && npm install -g . && cd /opt \ && rm -rf atom.zip composer.json composer.lock composer-setup.php /usr/local/bin/atom \ && /opt/bin/atom --help \ && which astgen \ diff --git a/ci/Dockerfile.sle b/ci/Dockerfile.sle index 9a9e7b6..e4b1c8e 100644 --- a/ci/Dockerfile.sle +++ b/ci/Dockerfile.sle @@ -85,7 +85,7 @@ COPY ./wrapper . RUN unzip -q atom.zip \ && source /root/.nvm/nvm.sh \ && composer update --no-progress --prefer-dist --ignore-platform-reqs \ - && cd /opt/nodejs && npm install --only=production && npm install -g . && cd /opt \ + && cd /opt/nodejs && npm install --only=production && bash build.sh && npm install -g . && cd /opt \ && rm -rf atom.zip composer.json composer.lock composer-setup.php /usr/local/bin/atom \ && java --version \ && /opt/bin/atom --help \