Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

Update to the LTS node version #308

Merged
merged 2 commits into from
Jun 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
# Job for build src, run unit & component test and build docker image
build:
docker:
- image: circleci/node:8.9.3
- image: circleci/node:8.11.3
working_directory: ~/mira
environment:
DOCKER_REPO: qlikcore/mira
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Do the npm install on the full image
FROM node:8.9.3 AS builder
FROM node:8.11.3 AS builder

WORKDIR /app
COPY package*.json ./
Expand All @@ -11,7 +11,7 @@ COPY version.json ./
COPY docker-entrypoint.sh ./

# Only copy needed pieces from the build step
FROM node:8.9.3-alpine
FROM node:8.11.3-alpine

WORKDIR /app
COPY --from=builder /app .
Expand Down