Update Dockerfile and manifest.yaml to expose port 32190
This commit is contained in:
parent
18b29e7e46
commit
99595e869d
@ -9,5 +9,6 @@ RUN npm run build
|
|||||||
FROM nginx:stable-alpine as production-stage
|
FROM nginx:stable-alpine as production-stage
|
||||||
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
||||||
COPY --from=build-stage /app/nginx.conf /etc/nginx/nginx.conf
|
COPY --from=build-stage /app/nginx.conf /etc/nginx/nginx.conf
|
||||||
EXPOSE 32166
|
# EXPOSE 32166
|
||||||
|
EXPOSE 32190
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
CMD ["nginx", "-g", "daemon off;"]
|
@ -6,5 +6,5 @@ services:
|
|||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
ports:
|
ports:
|
||||||
- "32166:80"
|
- "32190:80"
|
||||||
restart: always
|
restart: always
|
Loading…
x
Reference in New Issue
Block a user