| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/env bash | |
| 2 | |
| 3 set -x | |
| 4 set -e | |
| 5 | |
| 6 docker --version | |
| 7 | |
| 8 mkdir -p third_party/phusion-baseimage-docker | |
| 9 pushd third_party/phusion-baseimage-docker | |
| 10 git init | |
| 11 git fetch https://github.com/phusion/baseimage-docker.git | |
| 12 git checkout -b master 06e2983ba995c2e5684f8414b861425c7f5e6369 | |
| 13 docker build --rm -t my-base-ubuntu-image ./image | |
| 14 popd | |
| 15 | |
| 16 docker build --rm --build-arg buildtype=${BUILDTYPE} -f .travis/Dockerfile -t ad blockpluscore-test-image . | |
| 17 | |
| OLD | NEW |