We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35378ec commit 9bf9a3bCopy full SHA for 9bf9a3b
3 files changed
CI/Jenkinsfile
@@ -19,9 +19,10 @@ node {
19
/* Ideally, we would run a test framework against our image.
20
* For this example, we're using a Volkswagen-type approach */
21
22
- app.inside {
23
- sh 'echo "Tests passed"'
24
- }
+ docker.build("test-image", "./CI/test")
+ // app.inside {
+ // sh 'echo "Tests passed"'
25
+ // }
26
}
27
28
stage('Push image') {
CI/build.dockerfile
CI/test.dockerfile CI/test/DockerfileCI/test.dockerfile renamed to CI/test/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ndbuild:latest
+FROM build-image:latest
2
3
WORKDIR /nodejs.org/
4
RUN npm test
0 commit comments