diff --git a/Dockerfile b/Dockerfile index cc2f81c..1723868 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,4 +15,5 @@ WORKDIR /app COPY --from=builder /app/build ./ +EXPOSE 3000 CMD ["node", "./"] diff --git a/Jenkinsfile b/Jenkinsfile index d1f8ea8..1e730d3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,13 +7,6 @@ pipeline { } stages { - stage('Build') { - steps { - sh 'npm ci' - sh 'npm run build' - } - } - stage('Docker Build') { steps { script { @@ -32,4 +25,4 @@ pipeline { } } } -} \ No newline at end of file +}