This repository has been archived on 2020-08-01. You can view files and clone it, but cannot push or open issues or pull requests.
nginx-proxy/Dockerfile

30 lines
842 B
Docker
Raw Normal View History

2014-05-05 18:59:23 +02:00
FROM ubuntu:12.04
MAINTAINER Jason Wilder jwilder@litl.com
# Install Nginx.
RUN apt-get update
RUN apt-get install -y python-software-properties wget
2014-05-05 18:59:23 +02:00
RUN add-apt-repository -y ppa:nginx/stable
RUN apt-get update
RUN apt-get install -y nginx
2014-05-05 18:59:23 +02:00
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
2014-06-07 21:53:16 +02:00
#fix for long server names
RUN sed -i 's/# server_names_hash_bucket/server_names_hash_bucket/g' /etc/nginx/nginx.conf
2014-05-05 18:59:23 +02:00
RUN mkdir /app
WORKDIR /app
ADD . /app
2014-06-08 18:10:11 +02:00
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
RUN wget https://github.com/jwilder/docker-gen/releases/download/0.3.0/docker-gen-linux-amd64-0.3.0.tar.gz
RUN tar xvzf docker-gen-linux-amd64-0.3.0.tar.gz
2014-05-05 18:59:23 +02:00
EXPOSE 80
ENV DOCKER_HOST unix:///tmp/docker.sock
CMD ["forego", "start", "-r"]