diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7a261164612449f9af8229b7be65929191b8d6e6..ba59848521a15dc8e44893dd9768aacaf1b9de9e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -92,16 +92,16 @@ kube_deploy:
                 value: http://squid-proxy.kube-system.svc:3128/
               - name: https_proxy
                 value: http://squid-proxy.kube-system.svc:3128/
-              command: ["flask", "run", "-h", "0", "-p", "3000"]
+              command: ["flask", "run", "-h", "0", "-p", "5000"]
               image: $CI_REGISTRY_IMAGE:latest
               imagePullPolicy: Always
               name: ${CI_PROJECT_PATH_SLUG}
               ports:
-              - containerPort: 3000
+              - containerPort: 5000
                 protocol: TCP
               readinessProbe:
                 tcpSocket:
-                  port: 3000
+                  port: 5000
               resources:
                 limits:
                   cpu: 100m
@@ -123,7 +123,7 @@ kube_deploy:
         - name: web
           port: 80
           protocol: TCP
-          targetPort: 3000
+          targetPort: 5000
         selector:
           app: ${CI_PROJECT_PATH_SLUG}
         type: ClusterIP