read.cash Log in
h@hbkedge more from that month

龍家俊教你 docker day 36 Angular service 練習 ├── angular │ ├── Dockerfile │ ├── ... │ ├── ... │ .... └── docker-compose.yaml yaml: version: "3.7" services: web: build: angular ports: - 4200:4200 ... Dockerfile: FROM node:10 RUN mkdir /project WORKDIR /project COPY . . RUN npm install -g @angular/cli RUN yarn install CMD ["ng", "serve", "--host", "0.0.0.0"] 最後 http://localhost:4200 可以看到網頁結果

No comments yet

Log in to join in Reading is open to everyone. Replying needs an account.