Created
August 31, 2020 09:12
-
-
Save buildingwatsize/251fce2719cc877b115b8b687e7718d6 to your computer and use it in GitHub Desktop.
[Medium Benchmark ขำๆ] - Dockerfile ฝั่ง 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 nginx:1.17.9 | |
COPY nginx/default.conf /etc/nginx/conf.d/ | |
RUN rm -rf /usr/share/nginx/html/* | |
RUN apt-get -y update | |
WORKDIR /usr/share/nginx/html | |
COPY ./build . | |
CMD ["nginx", "-g", "daemon off;"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment