From c26d17e1df20f15d6b5c1af9b489f52a8ed7c161 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 1 Jun 2018 16:58:35 +0200 Subject: [PATCH] Upgrade pip and setuptools --- Dockerfile | 3 +++ app/bin/app.sh | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0d18e042..c4c60b3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,9 @@ COPY lib/mezzanine-organization-themes/Gemfile /srv RUN gem install bundler RUN bundle install +RUN pip install -U pip +RUN pip install -U setuptools + RUN mkdir /srv/app COPY app/requirements.txt /srv/app RUN pip install -r app/requirements.txt diff --git a/app/bin/app.sh b/app/bin/app.sh index 724a2720..7d371299 100755 --- a/app/bin/app.sh +++ b/app/bin/app.sh @@ -19,7 +19,8 @@ gid='www-data' # patterns='*.js;*.css;*.jpg;*.jpeg;*.gif;*.png;*.svg;*.ttf;*.eot;*.woff;*.woff2' # Install (staging) libs -/srv/bin/build/local/setup_lib.sh +# /srv/bin/build/local/setup_lib.sh +# pip install -U setuptools # waiting for other services sh $app/bin/wait.sh -- 2.39.5