https://github.com/recruitee/docker-ce-git-make
Base image for CI builds
https://github.com/recruitee/docker-ce-git-make
Last synced: 5 months ago
JSON representation
Base image for CI builds
- Host: GitHub
- URL: https://github.com/recruitee/docker-ce-git-make
- Owner: Recruitee
- License: mit
- Created: 2017-08-09T09:40:48.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-09T09:45:27.000Z (almost 9 years ago)
- Last Synced: 2025-05-16T22:13:06.339Z (about 1 year ago)
- Language: Makefile
- Homepage: https://hub.docker.com/r/recruitee/docker/tags/
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-ce-git-make
## Buliding & publishing
```bash
make build
make publish
```
## Usage
```yml
# .circleci/circle.yml
version: 2
jobs:
build:
docker:
- image: recruitee/docker:17.06.0-ce-git-make
steps:
- checkout
- setup_remote_docker
- run: |
make ci-test
```