Last active
August 29, 2015 14:23
-
-
Save robzhu/0107895a82e73f6cc147 to your computer and use it in GitHub Desktop.
Dockerfile for building an nginx development container
This file contains 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
#Dockerfile for building an nginx development container | |
FROM debian | |
RUN apt-get update | |
RUN apt-get install curl vim git nginx -y | |
EXPOSE 80 | |
WORKDIR /etc/nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment