Created
July 31, 2019 09:16
-
-
Save alickmail/2177f931729ca3651dbc735b6d649410 to your computer and use it in GitHub Desktop.
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
FROM nginx | |
RUN apt-get update && apt-get install -y python curl && curl -O <https://bootstrap.pypa.io/get-pip.py> && \\ | |
python get-pip.py | |
RUN update-ca-certificates | |
WORKDIR /nginx | |
ADD default.conf /etc/nginx/conf.d/default.conf | |
# Define default command. | |
CMD ["nginx", "-g", "daemon off;"] | |
# Expose ports. | |
EXPOSE 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment