Guest User

Untitled

a guest
Nov 12th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. FROM nginx:latest
  2. RUN DEBIAN_FRONTEND=noninteractive && \
  3. apt update && \
  4. apt dist-upgrade -y && \
  5. apt install -y nginx-extras ca-certificates gettext-base curl && \
  6. rm -rf /var/cache/apt && rm -rf /var/lib/apt
  7. CMD ["nginx", "-g", "daemon off;"]
Add Comment
Please, Sign In to add comment