]> git.parisson.com Git - mezzo.git/commitdiff
Fix debian install commands
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Fri, 2 Dec 2016 16:38:41 +0000 (17:38 +0100)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Fri, 2 Dec 2016 16:38:55 +0000 (17:38 +0100)
Dockerfile

index 05905e60d02ce495a3a7973434a3f8a1ffe82628..b34446115133b5f9018f428958ee2fafe40f2e40 100644 (file)
@@ -6,12 +6,14 @@ RUN mkdir /srv/app
 RUN mkdir /srv/lib
 WORKDIR /srv/app
 
+RUN apt-get update && apt-get install apt-transport-https
+COPY etc/apt/sources.list /etc/apt/
 COPY debian-requirements.txt /srv/app/
 RUN apt-get update && \
     DEBIAN_PACKAGES=$(egrep -v "^\s*(#|$)" debian-requirements.txt) && \
     apt-get install -y --force-yes $DEBIAN_PACKAGES && \
     echo fr_FR.UTF-8 UTF-8 >> /etc/locale.gen && \
-    locale-gen \
+    locale-gen && \
     apt-get clean
 
 ENV LANG fr_FR.UTF-8