diff --git a/Dockerfile b/Dockerfile index 0f0dcf4..9e94b83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM nginx:alpine COPY dist/ /usr/share/nginx/html/ -EXPOSE 80 +EXPOSE 5158 diff --git a/Jenkinsfile b/Jenkinsfile index 2325faf..975531c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,8 +3,8 @@ pipeline { environment { IMAGE_NAME = 'lpt-fe:0.0' CONTAINER_NAME = 'LPT_FE' - HOST_PORT = '8080' - CONTAINER_PORT = '80' + HOST_PORT = '5158' + CONTAINER_PORT = '5158' } stages { stage('Install Dependencies') {