Last active
August 3, 2018 15:50
-
-
Save SaraVieira/66b8530b5aaeacf41cded3c5ec3e141f to your computer and use it in GitHub Desktop.
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 nginx:1.15.2-alpine | |
COPY ./build /var/www | |
COPY nginx.conf /etc/nginx/nginx.conf | |
EXPOSE 80 | |
ENTRYPOINT ["nginx","-g","daemon off;"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment