Update Dockerfile and manifest.yaml

This commit is contained in:
Dede Fuji Abdul 2024-02-16 10:32:49 +07:00
parent 99595e869d
commit 10d412a21c
2 changed files with 1 additions and 12 deletions

View File

@ -9,6 +9,5 @@ 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;"]

View File

@ -1,10 +0,0 @@
version: '3.8'
services:
apkt-eis:
build:
context: .
dockerfile: Dockerfile
ports:
- "32190:80"
restart: always