Skip to content

Instantly share code, notes, and snippets.

@buildingwatsize
Created August 31, 2020 09:12
Show Gist options
  • Save buildingwatsize/251fce2719cc877b115b8b687e7718d6 to your computer and use it in GitHub Desktop.
Save buildingwatsize/251fce2719cc877b115b8b687e7718d6 to your computer and use it in GitHub Desktop.
[Medium Benchmark ขำๆ] - Dockerfile ฝั่ง Nginx
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