Skip to content

Commit 41979e6

Browse files
committed
chore: user the same node version in docker
User the same node version 8.11.3 in all services in docker-compose file - to reduce the number of docker images to download - to get rid of the error I had on macOS "EINTEGRITY" "integrity checksum failed when using sha512: wanted sha512". This is very strange error which seems to raise sometimes, but with 8.11.3 much less often
1 parent 33bdb8a commit 41979e6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

local/full/docker-compose.base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
build:
55
context: ./generic-tc-service
66
args:
7-
NODE_VERSION: 8.2.1
7+
NODE_VERSION: 8.11.3
88
GIT_URL: https://github.com/topcoder-platform/tc-notifications
99
GIT_BRANCH: dev
1010
BYPASS_TOKEN_VALIDATION: 1

local/full/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ services:
4646
build:
4747
context: ./generic-tc-service
4848
args:
49-
NODE_VERSION: 8.2.1
49+
NODE_VERSION: 8.11.3
5050
GIT_URL: https://github.com/topcoder-platform/tc-bus-api
5151
GIT_BRANCH: dev
5252
BYPASS_TOKEN_VALIDATION: 1

local/full/generic-tc-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG NODE_VERSION=8.2.1
1+
ARG NODE_VERSION=8.11.3
22

33
FROM node:$NODE_VERSION
44
ARG GIT_URL

0 commit comments

Comments
 (0)