From 9c15fd354f0e98e5b1e48b446304fb16cddced68 Mon Sep 17 00:00:00 2001 From: Aleksandr Volochnev Date: Sat, 21 Apr 2018 00:17:05 +0200 Subject: [PATCH] Updated base image to python:2-alpine3.7 (#5889) Updated base image from python:2-alpine to python:2-alpine3.7. Python:2-alpine internally utilises alpine version 3.4 which end-of-life date is the first of May 2018. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cf4e9afad..28cd6b323 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:2-alpine +FROM python:2-alpine3.7 ENTRYPOINT [ "certbot" ] EXPOSE 80 443