21 строка
703 B
Docker
21 строка
703 B
Docker
#checkov:skip=CKV_DOCKER_2
|
|
#checkov:skip=CKV_DOCKER_3
|
|
FROM python:3.13-slim@sha256:026dd417a88d0be8ed5542a05cff5979d17625151be8a1e25a994f85c87962a5
|
|
|
|
WORKDIR /action/workspace
|
|
COPY requirements.txt CONTRIBUTING-template.md open_contrib_pr.py /action/workspace/
|
|
|
|
RUN python3 -m pip install --no-cache-dir -r requirements.txt \
|
|
&& apt-get -y update \
|
|
&& apt-get -y install --no-install-recommends git=1:2.39.5-0+deb12u1 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD ["/action/workspace/open_contrib_pr.py"]
|
|
ENTRYPOINT ["python3", "-u"]
|
|
|
|
# To run ineractive debug on the docker container
|
|
# 1. Comment out the above CMD and ENTRYPOINT lines
|
|
# 2. Uncomment the ENTRYPOINT line below
|
|
|
|
#ENTRYPOINT ["bash"]
|