Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ repos:
args: [--fix]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.10
rev: v0.14.11
hooks:
- id: ruff
types_or: [python, pyi, jupyter]
Expand All @@ -95,7 +95,7 @@ repos:
- id: taplo-format

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.9.22
rev: 0.9.24
hooks:
- id: uv-lock

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# hadolint global ignore=DL3008
FROM ghcr.io/astral-sh/uv:0.9.22@sha256:2320e6c239737dc73cccce393a8bb89eba2383d17018ee91a59773df802c20e6 AS uv
FROM ghcr.io/astral-sh/uv:0.9.24@sha256:816fdce3387ed2142e37d2e56e1b1b97ccc1ea87731ba199dc8a25c04e4997c5 AS uv

##
# base
Expand Down Expand Up @@ -33,7 +33,7 @@
APT::AutoRemove::SuggestsImportant "false";
EOF

RUN apt-get update && \

Check warning on line 36 in Dockerfile

View workflow job for this annotation

GitHub Actions / kics

[MEDIUM] Apt Get Install Pin Version Not Defined

When installing a package, its pin version should be defined
apt-get upgrade --yes && \
apt-get install --yes --no-install-recommends curl \
&& rm -rf /var/lib/apt/lists/*
Expand All @@ -43,7 +43,7 @@
##
FROM base AS dev

RUN apt-get update && \

Check warning on line 46 in Dockerfile

View workflow job for this annotation

GitHub Actions / kics

[MEDIUM] Apt Get Install Pin Version Not Defined

When installing a package, its pin version should be defined
apt-get install --yes --no-install-recommends build-essential \
&& rm -rf /var/lib/apt/lists/*

Expand Down Expand Up @@ -91,7 +91,7 @@
FROM dev AS compile

USER root
RUN apt-get update && \

Check warning on line 94 in Dockerfile

View workflow job for this annotation

GitHub Actions / kics

[MEDIUM] Apt Get Install Pin Version Not Defined

When installing a package, its pin version should be defined

Check warning on line 94 in Dockerfile

View workflow job for this annotation

GitHub Actions / kics

[MEDIUM] Apt Get Install Pin Version Not Defined

When installing a package, its pin version should be defined
apt-get install --yes --no-install-recommends \
binutils \
patchelf \
Expand Down
Loading