From 48dfc8213883c52d98888d052254472e4f071a54 Mon Sep 17 00:00:00 2001 From: Sokratis Siozos-Drosos Date: Thu, 25 Apr 2019 13:37:51 +0200 Subject: [PATCH] (MODE-11365) Testing with new image. --- .circleci/config.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 90bdf10..8a0de94 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,23 +3,12 @@ jobs: build-package: working_directory: /usr/src/app docker: - - image: ubuntu:16.04 + - image: monosolutions/ubuntu-nodejs steps: - checkout - restore_cache: key: node-dependencies-{{ checksum "package.json" }} - - run: - name: Setup and run npm - command: | - apt update && \ - apt install -y apt-transport-https \ - build-essential python libcairo2-dev \ - libgles2-mesa-dev libgbm-dev libllvm3.9 libprotobuf-dev \ - libxxf86vm-dev libjpeg-dev xvfb nodejs \ - heat-cfntools software-properties-common curl - curl -sL https://deb.nodesource.com/setup_6.x | bash - - apt install -y nodejs - npm install + - run: npm install - save_cache: paths: - node_modules