You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
303 B
Docker
11 lines
303 B
Docker
# 注释: Dockerfile ARG命令
|
|
|
|
FROM busybox
|
|
ARG BaseWorkPath=/App/
|
|
WORKDIR $BaseWorkPath
|
|
WORKDIR WebSites/
|
|
WORKDIR ApiDemo/
|
|
RUN pwd
|
|
|
|
# docker build -f Dockerfile.ARG --build-arg CONT_IMG_VER=0.0.2 -t study.dockerfile.arg:latest -t study.dockerfile.arg:0.0.1 .
|
|
# docker run --rm -it study.dockerfile.arg |