From 66d7eef3bcfed58c45fd7c476ee18a26eae06e64 Mon Sep 17 00:00:00 2001 From: Bruno Michel <bmichel@menfin.info> Date: Tue, 20 Jun 2017 09:08:55 +0200 Subject: [PATCH] Use Debian Stretch for our docker client-app-dev image --- scripts/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/Dockerfile b/scripts/Dockerfile index f09225ed2..3713fc9d1 100644 --- a/scripts/Dockerfile +++ b/scripts/Dockerfile @@ -2,7 +2,7 @@ # applications for cozy-stack. It installs couchdb 2 and the cozy-stack. # It should not be used for hosting your cozy cloud in production. -FROM debian:jessie-slim +FROM debian:stretch-slim # CouchDB @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ ca-certificates \ curl \ - libicu52 \ + libicu57 \ libmozjs185-1.0 \ erlang-nox \ erlang-reltool \ @@ -50,7 +50,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && echo "[chttpd]\nbind_address = 0.0.0.0" \ > /usr/local/couchdb/etc/local.ini \ && apt-get autoremove -y && apt-get clean \ - && apt-get install -y libicu52 --no-install-recommends + && apt-get install -y libicu57 --no-install-recommends ENV PATH $PATH:/usr/local/couchdb/bin -- GitLab