Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
651 views
in Technique[技术] by (71.8m points)

why get error: "docker build" requires exactly 1 argument

I look a sample

Dockerfile

ARG some_variable_name
# or with a default:
# ARG some_variable_name=default_value

RUN echo "Oh dang look at that $some_variable_name
# or with ${some_variable_name}

docker build

$ docker build --build-arg some_variable_name=a_value

result

Oh dang look at that a_value

but, I used the sample always gets error

"docker build" requires exactly 1 argument.
See 'docker build --help'.

Usage:  docker build [OPTIONS] PATH | URL | -

Build an image from a Dockerfile

Why? Was I lose something?

question from:https://stackoverflow.com/questions/65650924/why-get-error-docker-build-requires-exactly-1-argument

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You seem to have forgotten to put a dot, which represents that the Dockerfile in the local directory.

By that I meant:

docker build -t mytag .

What you were previously doing was:

docker build -t mytag

Thus forgetting to put the dot.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...