We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20c17e9 commit fb2f0bfCopy full SHA for fb2f0bf
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM 120717539064.dkr.ecr.us-west-2.amazonaws.com/node:14
+FROM node:14
2
3
# Setting working directory. All the path will be relative to WORKDIR
4
WORKDIR /usr/src/app
Jenkinsfile
@@ -0,0 +1,27 @@
+pipeline {
+ agent any
+
+ tools {nodejs "node"}
5
6
+ stages {
7
8
+ stage('Git') {
9
+ steps {
10
+ git 'https://github.com/sd031/aws_codebuild_codedeploy_nodeJs_demo.git'
11
+ }
12
13
14
+ stage('Build') {
15
16
+ sh 'npm install'
17
+ // sh '<<Build Command>>' run any commands as needed
18
19
20
21
+ // stage('Test') {
22
+ // steps {
23
+ // sh 'node test'
24
+ // }
25
26
27
+}
0 commit comments