I am trying to enable HTTP2 for my nginx and I have his dockerfile where I use debian:jessie
docker image and I try to install nginx:
FROM debian:jessie
RUN apt-get update && apt-get install -y nginx
RUN nginx -v
Unfortunatelly, when running it, I see nginx version: nginx/1.6.2
and according to documentation HTTP2 is available on 1.9.5
or newer.
Why does it install 1.6.2
and not newer? And how can I update it?