We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have use command DOCKER_BUILDKIT=1 dapper cargo build to build lockc. then I want to test, but it failed.
DOCKER_BUILDKIT=1 dapper cargo build
# dapper cargo test Sending build context to Docker daemon 9.758MB Error response from daemon: dockerfile parse error line 2: unknown instruction: INCLUDE+ FATA[0000] exit status 1
# dapper cargo test
The text was updated successfully, but these errors were encountered:
Hi @leiqi96,
Can you try DOCKER_BUILDKIT=1 dapper cargo test?
DOCKER_BUILDKIT=1 dapper cargo test
The INCLUDE+ instruction comes from Dockerfile+ extension and using such extensions works only with Docker Buildkit enabled.
INCLUDE+
We probably need to somehow document to always enable DOCKER_BUILDKIT, for people who are not using the newest Docker versions.
DOCKER_BUILDKIT
Sorry, something went wrong.
thanks, it works
No branches or pull requests
I have use command
DOCKER_BUILDKIT=1 dapper cargo build
to build lockc.then I want to test, but it failed.
# dapper cargo test
Sending build context to Docker daemon 9.758MB
Error response from daemon: dockerfile parse error line 2: unknown instruction: INCLUDE+
FATA[0000] exit status 1
The text was updated successfully, but these errors were encountered: