Merge df3f6e5056
into 67933f0e29
This commit is contained in:
commit
6fbebad148
5 changed files with 5 additions and 12 deletions
17
Dockerfile
17
Dockerfile
|
@ -5,25 +5,18 @@ MAINTAINER Jason Wilder jwilder@litl.com
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y -q --no-install-recommends \
|
&& apt-get install -y -q --no-install-recommends \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
wget \
|
|
||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& rm -r /var/lib/apt/lists/*
|
&& rm -r /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Configure Nginx and apply fix for long server names
|
# fix for long server names in Nginx
|
||||||
RUN echo "daemon off;" >> /etc/nginx/nginx.conf \
|
RUN sed -i 's/^http {/&\n server_names_hash_bucket_size 64;/g' /etc/nginx/nginx.conf
|
||||||
&& sed -i 's/^http {/&\n server_names_hash_bucket_size 64;/g' /etc/nginx/nginx.conf
|
|
||||||
|
|
||||||
# Install Forego
|
|
||||||
RUN wget -P /usr/local/bin https://godist.herokuapp.com/projects/ddollar/forego/releases/current/linux-amd64/forego \
|
|
||||||
&& chmod u+x /usr/local/bin/forego
|
|
||||||
|
|
||||||
ENV DOCKER_GEN_VERSION 0.3.6
|
ENV DOCKER_GEN_VERSION 0.3.6
|
||||||
|
|
||||||
RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz \
|
# Install docker-gen
|
||||||
&& tar -C /usr/local/bin -xvzf docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz \
|
ADD docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz /usr/local/bin
|
||||||
&& rm /docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
|
|
||||||
|
|
||||||
COPY . /app/
|
COPY ./root/ /
|
||||||
WORKDIR /app/
|
WORKDIR /app/
|
||||||
|
|
||||||
ENV DOCKER_HOST unix:///tmp/docker.sock
|
ENV DOCKER_HOST unix:///tmp/docker.sock
|
||||||
|
|
BIN
docker-gen-linux-amd64-0.3.6.tar.gz
Normal file
BIN
docker-gen-linux-amd64-0.3.6.tar.gz
Normal file
Binary file not shown.
BIN
root/usr/local/bin/forego
Executable file
BIN
root/usr/local/bin/forego
Executable file
Binary file not shown.
Loading…
Reference in a new issue