Skip to content
Snippets Groups Projects
Commit 934bb00a authored by derrabauke's avatar derrabauke
Browse files

refine build stage with DinD image

parent 2cb681ef
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,8 @@ test_client:
- cd app/client
- npm install
- npm run test
except:
- master # only for now to speed up dev
test_server:
stage: test
......@@ -34,8 +36,15 @@ test_server:
- cd app/server
- npm install
- npm run test
except:
- master # only for now to speed up dev
build_client:
image: docker:19.03.12
services:
- docker:19.03.12-dind
stage: build
script:
- docker build -f app/client/Dockerfile -t client:v0.0.1 client
only:
- master
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment