We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a20783d commit 1d113f7Copy full SHA for 1d113f7
Dockerfile
@@ -1,11 +1,12 @@
1
-FROM python:3.11-slim-buster
+FROM python:3.13.7-slim
2
3
WORKDIR /action/workspace
4
COPY codeql.yml requirements.txt enforcer.py /action/workspace/
5
6
+# Update installation commands
7
RUN python3 -m pip install --no-cache-dir -r requirements.txt \
8
&& apt-get -y update \
- && apt-get -y install --no-install-recommends git=1:2.47.2-0.2 \
9
+ && apt-get -y install --no-install-recommends git \
10
&& rm -rf /var/lib/apt/lists/*
11
12
CMD ["/action/workspace/enforcer.py"]
0 commit comments