From fc3e8fe5c233a619282713550596b596b7a16129 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 16 Feb 2025 02:21:01 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE320-EXPAT-7908298 - https://snyk.io/vuln/SNYK-ALPINE320-EXPAT-7908299 - https://snyk.io/vuln/SNYK-ALPINE320-EXPAT-7908300 - https://snyk.io/vuln/SNYK-ALPINE320-BUSYBOX-7233533 - https://snyk.io/vuln/SNYK-ALPINE320-BUSYBOX-7233586 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 34ac0f8..be9b8d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG commit_id -FROM python:3.12.3-alpine as base +FROM python:3.13.2-alpine as base RUN python3 -m pip install poetry RUN python3 -m poetry config virtualenvs.in-project true FROM base as build @@ -10,7 +10,7 @@ RUN apk update RUN apk add --no-cache make gcc linux-headers build-base RUN python3 -m poetry install RUN apk del gcc linux-headers build-base -FROM python:3.12.3-alpine as run +FROM python:3.13.2-alpine as run ENV FOLDERISTIC_DOCKER = 1 ENV FOLDERISTIC_COMMIT_ID = ${commit_id} WORKDIR /folderistic