diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-11 13:49:40 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-12-11 16:59:06 -0800 |
commit | 91628426678a635f26cf992dbd5caedb4a3ae24b (patch) | |
tree | 8b9ae16a04a8a883ff4c452bcc368d376d6cf70f /extra/docker | |
parent | c9ad890bc69ff59a3bca73b13d713b932bf0aa43 (diff) | |
download | fatcat-91628426678a635f26cf992dbd5caedb4a3ae24b.tar.gz fatcat-91628426678a635f26cf992dbd5caedb4a3ae24b.zip |
docker xenial base image: include python3.8
Diffstat (limited to 'extra/docker')
-rw-r--r-- | extra/docker/Dockerfile.test-base | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/extra/docker/Dockerfile.test-base b/extra/docker/Dockerfile.test-base index a556ed99..1413f88e 100644 --- a/extra/docker/Dockerfile.test-base +++ b/extra/docker/Dockerfile.test-base @@ -18,7 +18,12 @@ RUN set -eux; \ # APT dependencies RUN set -eux; \ apt update -qy; \ - apt install -y python3-dev python3-pip python3-wheel python3-requests python3-six python3-pytest libsnappy-dev libsodium-dev software-properties-common python3.7 python3.7-dev python3.7-venv python3.7-distutils wget libpq-dev pkg-config python3-pytest git + apt install -y \ + software-properties-common wget pkg-config git \ + libpq-dev libsnappy-dev libsodium-dev software-properties-common \ + python3.7 python3.7-dev python3.7-venv python3.7-distutils \ + python3.8 python3.8-dev python3.8-venv python3.8-distutils \ + python3-dev python3-pip python3-wheel python3-requests python3-six python3-pytest # Rust setup from docker-rust debian Dockerfile RUN set -eux; \ |