Browse Source

Merge pull request #2071 from dnephin/fix_dist_directory_for_build

Restore the dist volume mount for building linux binaries
Aanand Prasad 10 years ago
parent
commit
c950474810
1 changed files with 4 additions and 1 deletions
  1. 4 1
      script/build-linux

+ 4 - 1
script/build-linux

@@ -6,4 +6,7 @@ set -ex
 
 
 TAG="docker-compose"
 TAG="docker-compose"
 docker build -t "$TAG" .
 docker build -t "$TAG" .
-docker run --rm --entrypoint="script/build-linux-inner" "$TAG"
+docker run \
+    --rm --entrypoint="script/build-linux-inner" \
+    -v $(pwd)/dist:/code/dist \
+    "$TAG"