Espinoza Guillermo 6 rokov pred
rodič
commit
f81dda83ba
1 zmenil súbory, kde vykonal 4 pridanie a 2 odobranie
  1. 4 2
      statsd/Dockerfile

+ 4 - 2
statsd/Dockerfile

@@ -1,8 +1,10 @@
-FROM debian:9
+FROM debian:8
 
 ENV DEBIAN_FRONTEND noninteractive
 
-RUN apt-get update; \
+RUN echo Acquire::http::Proxy "http://aptcache.infra.flowdat.com/"; > /etc/apt/apt.conf.d/00aptproxy; \
+    printf "deb http://archive.debian.org/debian/ jessie main\ndeb-src http://archive.debian.org/debian/ jessie main\ndeb http://security.debian.org jessie/updates main\ndeb-src http://security.debian.org jessie/updates main" > /etc/apt/sources.list; \
+    apt-get update; \
     apt-get install -yq vim git curl wget; \
     curl -sL https://deb.nodesource.com/setup_10.x | bash; \
     apt-get update; \