Przeglądaj źródła

fix(www): don't get stuck on outdated nginx releases

nginx drops support for even release numbers every April, declaring
the next even release number stable:
https://www.nginx.com/blog/nginx-1-16-1-17-released/

This commit ensures that we always use the stable version.
Peter Thomassen 6 lat temu
rodzic
commit
bdec4155c7
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      www/Dockerfile

+ 1 - 1
www/Dockerfile

@@ -1,4 +1,4 @@
-FROM nginx:1.15-alpine
+FROM nginx:stable-alpine
 
 
 # Add dependencies for our scripts
 # Add dependencies for our scripts
 RUN apk add --no-cache bash openssl inotify-tools
 RUN apk add --no-cache bash openssl inotify-tools