diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2020-04-24 14:38:16 +1000 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2020-04-24 14:38:16 +1000 |
commit | 100f6265511d2c47c82aa93224d377b834f745fd (patch) | |
tree | fe95aaccc556047cefbb1e4d2590d596c304043d /Dockerfile-debian-python2-sqlite | |
parent | 0798a8892a52f26dd611d559fefa2e28da6d0e4a (diff) | |
download | mediagoblin-100f6265511d2c47c82aa93224d377b834f745fd.tar.lz mediagoblin-100f6265511d2c47c82aa93224d377b834f745fd.tar.xz mediagoblin-100f6265511d2c47c82aa93224d377b834f745fd.zip |
Switch to Python 3 by default.
Addresses #5592.
Diffstat (limited to 'Dockerfile-debian-python2-sqlite')
-rw-r--r-- | Dockerfile-debian-python2-sqlite | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile-debian-python2-sqlite b/Dockerfile-debian-python2-sqlite index 5cabef0f..6c53e9a8 100644 --- a/Dockerfile-debian-python2-sqlite +++ b/Dockerfile-debian-python2-sqlite @@ -58,7 +58,7 @@ USER www-data RUN git clone --depth=1 git://git.savannah.gnu.org/mediagoblin.git -b master . RUN ./bootstrap.sh -RUN VIRTUALENV_FLAGS='--system-site-packages' ./configure +RUN VIRTUALENV_FLAGS='--system-site-packages' ./configure --without-python3 RUN make RUN ./bin/pip install scikits.audiolab |