Skip to content

Conversation

@timelessnesses
Copy link
Owner

snyk-top-banner

Snyk has created this PR to fix 5 vulnerabilities in the dockerfile dependencies of this project.

Keeping your Docker base image up-to-date means you’ll benefit from security fixes in the latest version of your chosen image.

Snyk changed the following file(s):

  • Dockerfile

We recommend upgrading to python:3.14.3-alpine, as this image has only 0 known vulnerabilities. To do this, merge this pull request, then verify your application still works as expected.

Vulnerabilities that will be fixed with an upgrade:

Issue Score
critical severity CVE-2025-6965
SNYK-ALPINE322-SQLITE-10872094
  263  
low severity CVE-2025-69418
SNYK-ALPINE322-OPENSSL-15121112
  54  
low severity CVE-2025-68160
SNYK-ALPINE322-OPENSSL-15121113
  54  
low severity CVE-2026-22796
SNYK-ALPINE322-OPENSSL-15121196
  54  
low severity CVE-2025-66199
SNYK-ALPINE322-OPENSSL-15121223
  54  

Important

  • Check the changes in this PR to ensure they won't cause issues with your project.
  • Max score is 1000. Note that the real score may have changed since the PR was raised.
  • This PR was automatically created by Snyk using the credentials of a real user.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open fix PRs.

For more information:
🧐 View latest project report
📜 Customise PR templates
🛠 Adjust project settings
📚 Read about Snyk's upgrade logic


Learn how to fix vulnerabilities with free interactive lessons:

🦉 Learn about vulnerability in an interactive lesson of Snyk Learn.

Copilot AI review requested due to automatic review settings February 8, 2026 04:10
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the Docker base image to address Snyk-reported vulnerabilities in the container dependency stack.

Changes:

  • Upgraded the Docker base image from python:3.13.3-alpine to python:3.14.3-alpine in both build and runtime stages.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines 14 to 15
ENV FOLDERISTIC_DOCKER = 1
ENV FOLDERISTIC_COMMIT_ID = ${commit_id}
Copy link

Copilot AI Feb 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ENV lines use spaces around = (ENV FOLDERISTIC_DOCKER = 1, ENV FOLDERISTIC_COMMIT_ID = ${commit_id}), which Docker treats as part of the value (e.g., value becomes "= 1" / "= "). This can break consumers expecting the raw commit id (e.g., get_commit_id() fallback reads FOLDERISTIC_COMMIT_ID). Use ENV FOLDERISTIC_DOCKER=1 and ENV FOLDERISTIC_COMMIT_ID=${commit_id} (or the ENV key value form without =) to set the intended values.

Suggested change
ENV FOLDERISTIC_DOCKER = 1
ENV FOLDERISTIC_COMMIT_ID = ${commit_id}
ENV FOLDERISTIC_DOCKER=1
ENV FOLDERISTIC_COMMIT_ID=${commit_id}

Copilot uses AI. Check for mistakes.
Comment on lines 1 to +3
ARG commit_id

FROM python:3.13.3-alpine as base
FROM python:3.14.3-alpine as base
Copy link

Copilot AI Feb 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ARG commit_id is never provided by compose.yaml (no build.args), so FOLDERISTIC_COMMIT_ID will be empty in typical docker compose up usage. If this value is required at runtime (e.g., for get_commit_id() fallback), consider wiring the build arg through compose, providing a default, or removing the commit-id plumbing from the image.

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants