sk_fems_ui commit

This commit is contained in:
unknown
2025-07-12 15:13:46 +09:00
commit ffdf5ccb66
380 changed files with 137913 additions and 0 deletions

21
Dockerfile.ems.fopm Normal file
View File

@ -0,0 +1,21 @@
# Package stage
FROM node:14-alpine
WORKDIR /app
ADD dist/_nuxt/ /app/dist/_nuxt/
ADD dist/ems/fopm/ /app/dist/ems/fopm/
ADD dist/login/ /app/dist/login/
COPY dist/*.html /app/dist/
COPY dist/*.ico /app/dist/
COPY dist/*.png /app/dist/
COPY dist/*.svg /app/dist/
COPY dist/.* /app/dist/
RUN npm install -g serve
#ENV HOST 0.0.0.0
EXPOSE 3000
ENTRYPOINT ["serve", "-s", "dist", "-p", "3000"]