Skip to content

Instantly share code, notes, and snippets.

@legndery
Created August 13, 2021 21:54
Show Gist options
  • Save legndery/e56f667fa2e9cbad2bef846d13b8de9a to your computer and use it in GitHub Desktop.
Save legndery/e56f667fa2e9cbad2bef846d13b8de9a to your computer and use it in GitHub Desktop.
FROM nginx:1.21.0
COPY default.conf.template /etc/nginx/conf.d/default.conf.template
COPY nginx.conf /etc/nginx/nginx.conf
COPY static-html /usr/share/nginx/html
CMD /bin/bash -c "envsubst '\$PORT' < /etc/nginx/conf.d/default.conf.template > /etc/nginx/conf.d/default.conf" && nginx -g 'daemon off;'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment