When attempting to read the Vapefile, the following error is encountered: "Error reading config: read Vapefile: is a directory".
Steps to Reproduce:
- Run on Gitlab Runner
- Run the command to read the Vapefile.
- See the error message.
Expected Behavior:
- The Vapefile should be read without error, assuming it contains valid configuration data.
Actual Behavior:
- Encountered an error stating that the Vapefile is a directory.
Additional Information:
Version of the tool or library being used: symm/vape:latest
- Any relevant logs or screenshots.
- Any troubleshooting steps already attempted.
Dockerfile
image: docker:19.03.12
stages:
- smoke-test
smoke-test:
stage: smoke-test
script:
- docker ps
- ls -l
- docker run --rm -v $(pwd)/Vapefile:/Vapefile symm/vape:latest -skip-ssl-verification http://localhost:8080
Vapefile
[
{
"uri": "/",
"status_code": 200,
"content": "Hello, World!"
}
]

When attempting to read the Vapefile, the following error is encountered: "Error reading config: read Vapefile: is a directory".
Steps to Reproduce:
Expected Behavior:
Actual Behavior:
Additional Information:
Version of the tool or library being used: symm/vape:latest
Dockerfile
image: docker:19.03.12 stages: - smoke-test smoke-test: stage: smoke-test script: - docker ps - ls -l - docker run --rm -v $(pwd)/Vapefile:/Vapefile symm/vape:latest -skip-ssl-verification http://localhost:8080Vapefile