Merge pull request #52 from thaJeztah/optimize-dockerfile
Optimize Dockerfile.
This commit is contained in:
commit
20093a1f83
2 changed files with 25 additions and 17 deletions
2
.dockerignore
Normal file
2
.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
.git
|
||||||
|
README.md
|
40
Dockerfile
40
Dockerfile
|
@ -2,28 +2,34 @@ FROM ubuntu:14.04
|
||||||
MAINTAINER Jason Wilder jwilder@litl.com
|
MAINTAINER Jason Wilder jwilder@litl.com
|
||||||
|
|
||||||
# Install Nginx.
|
# Install Nginx.
|
||||||
RUN echo "deb http://ppa.launchpad.net/nginx/stable/ubuntu trusty main" > /etc/apt/sources.list.d/nginx-stable-trusty.list
|
RUN echo "deb http://ppa.launchpad.net/nginx/stable/ubuntu trusty main" > /etc/apt/sources.list.d/nginx-stable-trusty.list \
|
||||||
RUN echo "deb-src http://ppa.launchpad.net/nginx/stable/ubuntu trusty main" >> /etc/apt/sources.list.d/nginx-stable-trusty.list
|
&& echo "deb-src http://ppa.launchpad.net/nginx/stable/ubuntu trusty main" >> /etc/apt/sources.list.d/nginx-stable-trusty.list \
|
||||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C300EE8C
|
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C300EE8C \
|
||||||
RUN apt-get update
|
&& apt-get update \
|
||||||
RUN apt-get install --only-upgrade bash
|
&& apt-get install -y -q --no-install-recommends \
|
||||||
RUN apt-get install -y wget nginx
|
ca-certificates \
|
||||||
|
nginx \
|
||||||
|
wget \
|
||||||
|
&& apt-get clean \
|
||||||
|
&& rm -r /var/lib/apt/lists/*
|
||||||
|
|
||||||
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
|
# Configure Nginx and apply fix for long server names
|
||||||
|
RUN echo "daemon off;" >> /etc/nginx/nginx.conf \
|
||||||
|
&& sed -i 's/# server_names_hash_bucket/server_names_hash_bucket/g' /etc/nginx/nginx.conf
|
||||||
|
|
||||||
#fix for long server names
|
# Install Forego
|
||||||
RUN sed -i 's/# server_names_hash_bucket/server_names_hash_bucket/g' /etc/nginx/nginx.conf
|
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
|
||||||
RUN wget -P /usr/local/bin https://godist.herokuapp.com/projects/ddollar/forego/releases/current/linux-amd64/forego
|
|
||||||
RUN chmod u+x /usr/local/bin/forego
|
|
||||||
|
|
||||||
ENV DOCKER_GEN_VERSION 0.3.4
|
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
|
|
||||||
RUN tar -C /usr/local/bin -xvzf docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
|
|
||||||
|
|
||||||
RUN mkdir /app
|
RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz \
|
||||||
WORKDIR /app
|
&& tar -C /usr/local/bin -xvzf docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz \
|
||||||
ADD . /app
|
&& rm /docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
|
||||||
|
|
||||||
|
COPY . /app/
|
||||||
|
WORKDIR /app/
|
||||||
|
|
||||||
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
ENV DOCKER_HOST unix:///tmp/docker.sock
|
ENV DOCKER_HOST unix:///tmp/docker.sock
|
||||||
|
|
Reference in a new issue