From 219b4921d29e699d0e6a5ad708784aa4518fd3ad Mon Sep 17 00:00:00 2001 From: cat_shark <1716967236@qq.com> Date: Sun, 27 Jul 2025 19:27:44 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E6=9B=B4=E6=96=B0=E5=90=AF?= =?UTF-8?q?=E5=8A=A8=E7=AB=AF=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- Jenkinsfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e94b83..0f0dcf4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM nginx:alpine COPY dist/ /usr/share/nginx/html/ -EXPOSE 5158 +EXPOSE 80 diff --git a/Jenkinsfile b/Jenkinsfile index 975531c..9080bd1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ pipeline { IMAGE_NAME = 'lpt-fe:0.0' CONTAINER_NAME = 'LPT_FE' HOST_PORT = '5158' - CONTAINER_PORT = '5158' + CONTAINER_PORT = '80' } stages { stage('Install Dependencies') {