From ec7f40dc8877d79dc3487ecc1ac20b6d9c568292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Jaro=C5=A1?= Date: Wed, 6 Jul 2022 18:05:41 +0200 Subject: [PATCH] DEV;Update application port --- Jenkinsfile | 2 +- docker/Dockerfile | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cbf9411..f19e389 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ import FrontendBuild FrontendBuild({ name = 'portfolio' - port = "92:3000" + port = "93:3000" runSonar = true appType = "nextjs" }) diff --git a/docker/Dockerfile b/docker/Dockerfile index c06291c..62061ef 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -10,16 +10,11 @@ ENV NEXT_TELEMETRY_DISABLED 1 RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs -RUN ls -a - COPY .next/ .next/ COPY public/ public/ COPY node_modules/ node_modules/ COPY package.json package.json -RUN ls -a -RUN ls -a .next - RUN chown -R nextjs:nodejs .next USER nextjs