From 8a94a39977214330e2342a792d367a0271818caa Mon Sep 17 00:00:00 2001 From: Pavel Dmitriev Date: Mon, 28 Nov 2022 12:33:21 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB(?= =?UTF-8?q?=D0=B0)=20=D0=BD=D0=B0=20'Dockerfile'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit added mod-stream and ubuntu 22.04 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 045f246..662d61b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:21.10 +FROM ubuntu:22.10 RUN apt-get update -y \ && apt-get install -y \ @@ -7,6 +7,7 @@ RUN apt-get update -y \ certbot \ python3-certbot-nginx \ cron \ + libnginx-mod-stream \ && rm -rf /tmp/* \ && rm -rf /var/lib/apt/lists/*