Files
geg-gas-web/docker/Dockerfile-vue

14 lines
168 B
Plaintext
Raw Normal View History

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