Skip to content

Commit 4b0d3e7

Browse files
committed
Use node 12.16.3 alpine image with build dependencies
1 parent 80d68c8 commit 4b0d3e7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ integration_tests:
3333
--network=sandbox_default \
3434
-v $(PWD):/ws \
3535
-w /ws \
36-
node:6-alpine \
37-
/bin/sh -c 'mkdir -p ws2 && cp -a src tests package.json tsconfig.json ws2/ && cd ws2 && npm i && ./node_modules/mocha/bin/mocha -r ./node_modules/ts-node/register tests/integration/**/*.ts'
36+
node:12.16.3-alpine \
37+
/bin/sh -c 'mkdir -p ws2 && apk --no-cache add python make g++ && cp -a src tests package.json tsconfig.json ws2/ && cd ws2 && npm i && ./node_modules/mocha/bin/mocha -r ./node_modules/ts-node/register tests/integration/**/*.ts'
3838
docker-compose -f integration-tests/docker-compose.yml -p sandbox stop
3939

4040
.PHONY: compile

0 commit comments

Comments
 (0)