Revert "Use node alpine only"

This reverts commit 066f87640f.
This commit is contained in:
Aarni Halinen
2019-01-15 20:05:17 +02:00
parent 066f87640f
commit 04caaef874
2 changed files with 6 additions and 6 deletions
+5 -5
View File
@@ -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
+1 -1
View File
@@ -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