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

Commit

Permalink
updating to LTS node version (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Folkesson committed Jun 25, 2018
1 parent 51e5c5d commit ff55ace
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit ff55ace

Please sign in to comment.