From 6f0f61d2dec7247abcee741b68993a20b331b41c Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Wed, 1 Apr 2020 00:55:07 +0900 Subject: [PATCH] Change to FROM debian:stable in Dockerfile Fixes #218. See #220 for migrating to Python 3, the better long-term fix. --- ci-deploy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-deploy/Dockerfile b/ci-deploy/Dockerfile index b373b93..e9b8d39 100644 --- a/ci-deploy/Dockerfile +++ b/ci-deploy/Dockerfile @@ -1,6 +1,6 @@ # This Dockerfile is just used to run on Travis CI in an environment that can easily and repeatedly # install our build dependencies. -FROM debian:sid +FROM debian:stable RUN apt-get update && \ apt-get install -y ca-certificates curl rsync git unzip \