mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-22 17:10:26 +03:00
Updated to node 14
This commit is contained in:
parent
facfd33e96
commit
7dcd623513
4 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
build:
|
||||
environment:
|
||||
node: v12.14.1
|
||||
node: v14.15.0
|
||||
tools:
|
||||
external_code_coverage:
|
||||
timeout: 1200
|
||||
|
|
|
@ -11,7 +11,7 @@ cache:
|
|||
- node_modules
|
||||
|
||||
node_js:
|
||||
- '12.16.3'
|
||||
- '14.15.0'
|
||||
|
||||
jobs:
|
||||
fast_finish: true
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:12.16.3-alpine as node
|
||||
FROM node:14.15.0-alpine as node
|
||||
COPY . /shlink-web-client
|
||||
ARG VERSION="latest"
|
||||
ENV VERSION ${VERSION}
|
||||
|
|
|
@ -3,7 +3,7 @@ version: '3'
|
|||
services:
|
||||
shlink_web_client_node:
|
||||
container_name: shlink_web_client_node
|
||||
image: node:12.16.3-alpine
|
||||
image: node:14.15.0-alpine
|
||||
command: /bin/sh -c "cd /home/shlink/www && npm install && npm run start"
|
||||
volumes:
|
||||
- ./:/home/shlink/www
|
||||
|
|
Loading…
Reference in a new issue