记录一下angular打包docker镜像的步骤

1.编译angular文件

ng build --output-path D:\yx.dicm\dist --prod

cd  D:\yx.dicm\

2.建立docker镜像

docker build -t test-dic-ng:0.1 .

3.启动docker镜像

docker run --name=testdicng -p=8090:80 -d test-dic-ng:0.1

4.发布docker镜像

docker build -t xxxx:xxxx/test-dic-ng:0.1 .

docker push xxxx:xxxx/test-dic-ng:0.1

然后登录上服务器把它启动起来

你可能感兴趣的:(记录一下angular打包docker镜像的步骤)