Skip to content

Commit 5518f27

Browse files
committed
docs: build_via_docker.sh
1 parent d980514 commit 5518f27

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,13 @@ All build scripts support `VALGRIND=True` to enable valgrind instrumentation of
107107

108108
## Docker (linux/macOS/WinUbuntu)
109109

110+
This will create caches within `~/.docker_imageflow_caches` specific to the docker image used. Instances will be ephemeral; the only state will be in the caches.
111+
110112
```bash
111-
docker pull imazen/imageflow_build_ubuntu16
112-
cd ci
113-
./simulate_travis.sh imazen/imageflow_build_ubuntu16
113+
./build_via_docker.sh debug
114114
```
115115

116+
116117
## Linux
117118

118119
We need quite a few packages in order to build all dependencies. You probably have most of these already.

build_via_docker.sh

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ set -e #Exit on failure.
44
# Change directory to root (call this in a subshell if you have a problem with that)
55
cd "$( dirname "${BASH_SOURCE[0]}" )"
66

7+
# To remove (the LARGE) caches this writes to your home directory
8+
# rm -rf ~/.docker_imageflow_caches
9+
710
cd ci
811

912
export OVERRIDE="$1"

0 commit comments

Comments
 (0)