From 869f0af6cf9cbc3a7d79b9d0bf5e5a3fc52661d2 Mon Sep 17 00:00:00 2001 From: Tom Noonan II Date: Tue, 17 May 2022 15:05:07 -0400 Subject: [PATCH] Upgrade to openresty/openresty:1.19.9.1-12-alpine --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6ad13c3..43ed49a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM openresty/openresty:1.15.8.3-2-alpine +FROM openresty/openresty:1.19.9.1-12-alpine USER root -RUN apk add -v --no-cache bind-tools python py-pip supervisor \ +RUN apk add -v --no-cache bind-tools python3 py-pip py3-urllib3 py3-colorama supervisor \ && mkdir /cache \ - && addgroup -g 101 nginx \ - && adduser -u 100 -D -S -h /cache -s /sbin/nologin -G nginx nginx \ + && addgroup -g 110 nginx \ + && adduser -u 110 -D -S -h /cache -s /sbin/nologin -G nginx nginx \ && pip install --upgrade pip awscli==1.11.183 \ && apk -v --purge del py-pip