We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d7ffc05 + ddfd8ef commit 2c9d9abCopy full SHA for 2c9d9ab
Dockerfile
@@ -17,8 +17,9 @@ RUN sed -i 's/# server_names_hash_bucket/server_names_hash_bucket/g' /etc/nginx/
17
RUN wget -P /usr/local/bin https://godist.herokuapp.com/projects/ddollar/forego/releases/current/linux-amd64/forego
18
RUN chmod u+x /usr/local/bin/forego
19
20
-RUN wget https://github.com/jwilder/docker-gen/releases/download/0.3.3/docker-gen-linux-amd64-0.3.3.tar.gz
21
-RUN tar -C /usr/local/bin -xvzf docker-gen-linux-amd64-0.3.3.tar.gz
+ENV DOCKER_GEN_VERSION 0.3.4
+RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
22
+RUN tar -C /usr/local/bin -xvzf docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
23
24
RUN mkdir /app
25
WORKDIR /app
0 commit comments