Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Commit

Permalink
Use glock to control 3rd party dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilder committed Jan 15, 2015
1 parent 079af23 commit bc7293f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions GLOCKFILE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github.com/docker/docker 3837c080228143378b1041364a90aa5bcf59fa00
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ dist: dist-clean
mkdir -p dist/linux/amd64 && GOOS=linux GOARCH=amd64 go build -ldflags "$(LDFLAGS)" -o dist/linux/amd64/docker-squash

release: dist
glock sync github.com/jwilder/docker-squash
tar -cvzf docker-squash-linux-amd64-$(TAG).tar.gz -C dist/linux/amd64 docker-squash
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,17 @@ If you are creating a base image or only want one final squashed layer, you can
$ docker save <image_id> | sudo docker-squash -from root -t newtag | docker load
```

### Development

This project uses [glock](https://github.com/robfig/glock) for managing 3rd party dependencies.
You'll need to install glock into your workspace before hacking on docker-squash.

```
$ git clone <your fork>
$ glock sync github.com/jwilder/docker-squash
$ make
```

## License

MIT

0 comments on commit bc7293f

Please sign in to comment.