Skip to content

Commit

Permalink
fix: Dockerfile to reduce vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
snyk-bot committed Mar 15, 2024
1 parent a3f61d4 commit 0b648ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG commit_id

FROM python:3.11-alpine as base
FROM python:3.13.0a4-alpine as base
RUN python3 -m pip install poetry
RUN python3 -m poetry config virtualenvs.in-project true
FROM base as build
Expand All @@ -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.11-alpine as run
FROM python:3.13.0a4-alpine as run
ENV FOLDERISTIC_DOCKER = 1
ENV FOLDERISTIC_COMMIT_ID = ${commit_id}
WORKDIR /folderistic
Expand Down

0 comments on commit 0b648ec

Please sign in to comment.