FROM nginx:1.17.4

RUN apt-get update && apt-get install htop
COPY nginx.conf /etc/nginx/nginx.conf
CMD ["bash", "-c", "nginx -c /etc/nginx/nginx.conf && htop"]

