From 3e4eb1e590710c23d14025c1e29c86eb082f94bc Mon Sep 17 00:00:00 2001 From: neilpang Date: Tue, 2 Jul 2019 20:45:54 +0800 Subject: [PATCH] update base image to latest(current 1.17.1) to use tls 1.3 The mainline nginx:latest is not compiled with openssl 1.1.1 for now, so, it doesn't support tls 1.3 but the nginx:alpine supports tls 1.3 for now. --- Dockerfile | 2 +- Dockerfile.alpine | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 45a09e3..557d2f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM nginx:1.14.1 +FROM nginx:latest LABEL maintainer="Jason Wilder mail@jasonwilder.com" # Install wget and install/updates certificates diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 23459a3..d8cbc02 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,4 +1,4 @@ -FROM nginx:1.14.1-alpine +FROM nginx:alpine LABEL maintainer="Jason Wilder mail@jasonwilder.com" # Install wget and install/updates certificates