Skip to content

Commit

Permalink
Fix docker build for directory locations
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
matthew-brett committed Aug 7, 2017
1 parent 68652d5 commit 6f6e9c1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
gdal/.git
multibuild/.git
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM quay.io/pypa/manylinux1_x86_64
MAINTAINER Matthew Brett

COPY config.sh build_docker.sh gdal multibuild /io/
COPY config.sh build_docker.sh /io/
COPY gdal /io/gdal/
COPY multibuild /io/multibuild
RUN bash /io/build_docker.sh
4 changes: 0 additions & 4 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ function stop_pings {

function build_gdal {
if [ -e gdal-stamp ]; then return; fi
echo "Here"
build_zlib
echo "After here"
build_curl
build_expat
build_sqlite3
Expand Down Expand Up @@ -114,12 +112,10 @@ function build_gdal {
function pre_build {
# Any stuff that you need to do before you start building the wheels
# Runs in the root directory of this repository.
echo "In pre-build"
build_gdal
}

function build_wheel {
echo "In build wheel"
build_pip_wheel gdal/gdal/swig/python
}

Expand Down
2 changes: 1 addition & 1 deletion gdal
Submodule gdal updated 2978 files

0 comments on commit 6f6e9c1

Please sign in to comment.