https://github.com/screwdriver-cd/noop-container
Bare minimum docker container for running builds https://hub.docker.com/r/screwdrivercd/noop-container
https://github.com/screwdriver-cd/noop-container
docker
Last synced: about 1 year ago
JSON representation
Bare minimum docker container for running builds https://hub.docker.com/r/screwdrivercd/noop-container
- Host: GitHub
- URL: https://github.com/screwdriver-cd/noop-container
- Owner: screwdriver-cd
- License: other
- Created: 2019-10-22T23:09:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-06T23:35:26.000Z (about 2 years ago)
- Last Synced: 2025-05-18T13:02:03.625Z (about 1 year ago)
- Topics: docker
- Language: Dockerfile
- Homepage: https://cd.screwdriver.cd/pipelines/10766/
- Size: 9.77 KB
- Stars: 0
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# noop-container
Bare minimum docker container for running builds
## Usage
### Docker
```
docker run -it --rm screwdrivercd/noop-container bash
```
### Screwdriver
Example `screwdriver.yaml` file
```
jobs:
main:
image: screwdrivercd/noop-container
requires: [~pr, ~commit]
steps:
- noop: echo noop
```