From 9f172c308ce8ac11d5f3a50ce87003b2fe1b5ac6 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Fri, 8 Mar 2019 19:50:47 +0100 Subject: [PATCH] Ensured travis makes use of a working node version for builds --- .travis.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7ceae3d7..2254cc95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: node_js node_js: - - "stable" + - "10.15.3" cache: yarn: true diff --git a/Dockerfile b/Dockerfile index 05c1d33a..7c351d26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:10.15.2 as node +FROM node:10.15.3-alpine as node COPY . /shlink-web-client RUN cd /shlink-web-client && yarn install && yarn build