We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25ecb31 commit d061bb5Copy full SHA for d061bb5
3 files changed
tests/resources/invalid_parse_dockerfile/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM alpine:3.4
+FROM alpine:3
2
3
RUN apk update
4
# Parse error - ARG statment without idnetifier
tests/resources/invalid_run_dockerfile/Dockerfile
# Run error - file doesn't exists
tests/test_image_build.py
@@ -79,7 +79,7 @@ async def build():
79
await build()
80
81
captured = capsys.readouterr()
82
- assert "Step 1/3 : FROM alpine:3.4" in captured.err
+ assert "Step 1/3 : FROM alpine:3" in captured.err
83
assert "Step 2/3 : RUN apk update" in captured.err
84
assert "Step 3/3 : RUN file_not_exists.sh" in captured.err
85
assert "file_not_exists.sh: not found" in captured.err
0 commit comments