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 .