Use Node:12 images

This commit is contained in:
Aarni Halinen
2019-11-09 01:11:44 +02:00
parent 4271b8aeba
commit e8fe8f198f
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -10,13 +10,13 @@ cache:
- node_modules/ - node_modules/
setup: setup:
image: node image: node:12
stage: setup stage: setup
script: script:
- npm ci - npm ci
# test:unit: # test:unit:
# image: node # image: node:12
# stage: test # stage: test
# script: # script:
# - npm run test:unit # - npm run test:unit
@@ -28,13 +28,13 @@ setup:
# - npm run test:e2e # - npm run test:e2e
es:lint: es:lint:
image: node image: node:12
stage: lint stage: lint
script: script:
- npm run lint:es - npm run lint:es
sass:lint: sass:lint:
image: node image: node:12
stage: lint stage: lint
script: script:
- npm run lint:sass - npm run lint:sass
+1 -1
View File
@@ -1,4 +1,4 @@
FROM node:alpine FROM node:12-alpine
RUN apk add --no-cache libpng-dev gcc make g++ zlib-dev bash lcms2-dev autoconf automake libtool nasm RUN apk add --no-cache libpng-dev gcc make g++ zlib-dev bash lcms2-dev autoconf automake libtool nasm
WORKDIR /app WORKDIR /app