Created
August 15, 2019 03:01
-
-
Save ben1one/983fdb56d0b2a06a0e83ac3ab36d4748 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:latest | |
COPY nginx_conf/default.conf /etc/nginx/conf.d/default.conf | |
# Copy assets to the html directory | |
COPY build /usr/share/nginx/html | |
EXPOSE 80 | |
CMD ["nginx", "-g", "daemon off;"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment