Last active
January 3, 2016 18:59
-
-
Save mschoch/8505285 to your computer and use it in GitHub Desktop.
Dockerfile for nginx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM dustin/tiny | |
MAINTAINER Marty Schoch "[email protected]" | |
RUN apt-get update | |
RUN apt-get install -y nginx | |
RUN echo "daemon off;" >> /etc/nginx/nginx.conf | |
EXPOSE 80 | |
CMD /usr/sbin/nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment