diff options
author | rafael lisboa <rafaelzlisboa@gmail.com> | 2015-06-03 12:10:41 -0300 |
---|---|---|
committer | rafael lisboa <rafaelzlisboa@gmail.com> | 2015-06-03 12:15:52 -0300 |
commit | 16f2b9e1da34e95a702121751f4fd29986ff174e (patch) | |
tree | a1bad23ca9d5496e4f6410fc59f9cd27cf7f7bf6 | |
parent | 2dfae135cc1ecc94b9adde99168deaf1c1de6f3a (diff) |
use debian jessie instead of testing on dockerfile
we were using debian:testing, which apparently was causing "invalid
header value" for the SRP token (see https://github.com/pixelated-project/pixelated-dispatcher/issues/102).
i'm reverting this back to debian:jessie since that's the version we
intend to run the user-agent on for now anyway.
-rw-r--r-- | provisioning/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/provisioning/Dockerfile b/provisioning/Dockerfile index 3d969cc1..32da36d0 100644 --- a/provisioning/Dockerfile +++ b/provisioning/Dockerfile @@ -16,7 +16,7 @@ # along with Pixelated. If not, see <http://www.gnu.org/licenses/>. -FROM debian:testing +FROM debian:jessie MAINTAINER fbernitt@thoughtworks.com |