From 6076db9f8c97b2f4b29fd22987517919e8d3544b Mon Sep 17 00:00:00 2001 From: Alexander Bersenev Date: Wed, 17 Jun 2020 15:45:47 +0500 Subject: [PATCH] add certificates to Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2085430..8aa424c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:20.04 -RUN apt-get update && apt-get install --no-install-recommends -y python3 python3-uvloop python3-cryptography libcap2-bin && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install --no-install-recommends -y python3 python3-uvloop python3-cryptography libcap2-bin ca-certificates && rm -rf /var/lib/apt/lists/* RUN setcap cap_net_bind_service=+ep /usr/bin/python3.8 RUN useradd tgproxy -u 10000