Files
geg-gas-web/Dockerfile-vue

14 lines
191 B
Plaintext
Raw Normal View History

FROM --platform=linux/arm64 node-http-server:1.0.0
WORKDIR /app
COPY ./dist /app/html/
EXPOSE 8080
CMD ["node", "server.js"]
# docker build -f Dockerfile-vue -t pcitc/itc-web:1.0.2 .