From 55cf796bded147af423f971bb8aa06fa5b282d37 Mon Sep 17 00:00:00 2001 From: Michael Sanford Date: Sat, 27 May 2023 10:58:51 -0400 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities (#3) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE317-OPENSSL-3188632 - https://snyk.io/vuln/SNYK-ALPINE317-OPENSSL-3188632 Co-authored-by: snyk-bot --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e908b6c..d04b069 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3-alpine +FROM python:3.12.0a1-alpine RUN addgroup --gid 1000 --system honeypot && \ adduser --uid 1000 --system --home /usr/src/app --ingroup honeypot honeypot