diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/README.md | 1 | ||||
-rwxr-xr-x | docker/builder.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/docker/README.md b/docker/README.md index 59fc06f..1637d36 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,4 +1,5 @@ You can use the makefile to build the image. + "make packages" will build packages inside the builder container. Use https://github.com/kalikaneko/squid-in-a-can if you want to save some bandwith while building your images. diff --git a/docker/builder.sh b/docker/builder.sh index f9577f3..482021a 100755 --- a/docker/builder.sh +++ b/docker/builder.sh @@ -12,7 +12,7 @@ case $TYPE in echo "[+] Building SNAP" make package_snap ;; - default) + *) make build ;; esac |