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
Overriding entrypoint doesn't work.
entrypoint
Documentation https://docs.semaphoreci.com/reference/pipeline-yaml-reference/#containers doesn't have an explicit example, and I try the following syntax, which should execute ls -la in /bin/bash. /bin/bash doesn't happen, and instead default command is executed.
ls -la
/bin/bash
version: v1.0 name: Build snap in Docker agent: machine: type: f1-standard-2 containers: - name: main image: 'yakshaveinc/snapcraft:core24' # Your primary container where commands are run entrypoint: /bin/bash blocks: - name: snap build and push task: jobs: - name: Build snap commands: - ls -la - cd snapcrafting/yakshaveinc
The text was updated successfully, but these errors were encountered:
@abitrolly thanks for reporting this, we'll assess it.
Sorry, something went wrong.
No branches or pull requests
Overriding
entrypoint
doesn't work.Documentation https://docs.semaphoreci.com/reference/pipeline-yaml-reference/#containers doesn't have an explicit example, and I try the following syntax, which should execute
ls -la
in/bin/bash
./bin/bash
doesn't happen, and instead default command is executed.The text was updated successfully, but these errors were encountered: