From 04caaef8747ad65b15b458652b4a711d76c7a5c9 Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Tue, 15 Jan 2019 20:05:17 +0200 Subject: [PATCH] Revert "Use node alpine only" This reverts commit 066f87640f48478667144ea489671d2963014f3e. --- .gitlab-ci.yml | 10 +++++----- Dockerfile | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e70320..bd79389 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,31 +10,31 @@ cache: - node_modules/ setup: - image: node:alpine + image: node stage: setup script: - npm ci # test:unit: -# image: node:alpine +# image: node # stage: test # script: # - npm run test:unit # test:e2e: -# image: node:alpine +# image: node # stage: test # script: # - npm run test:e2e ts:lint: - image: node:alpine + image: node stage: lint script: - npm run lint:ts sass:lint: - image: node:alpine + image: node stage: lint script: - npm run lint:sass diff --git a/Dockerfile b/Dockerfile index b62377b..54b7b4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:alpine +FROM node RUN apk add --no-cache libpng-dev gcc make g++ zlib-dev bash lcms2-dev autoconf automake libtool nasm WORKDIR /app