mirror of
https://github.com/tofuutils/pre-commit-opentofu.git
synced 2025-10-15 17:38:54 +02:00
fix: Updates all dependencies used in Dockerfile and fix Docker image (#507)
* Docker doesn't provide possibilities for avoiding trash There is no possibility to exclude part of the "pre-installed" files from COPY steps like https://github.com/moby/buildkit/issues/2853 And copy-paste mostly all `site-packages` without it is not worth it
This commit is contained in:
parent
7d501b1bf9
commit
dc177fe29e
3 changed files with 13 additions and 11 deletions
|
|
@ -43,7 +43,7 @@ commandTests:
|
||||||
- name: "tflint"
|
- name: "tflint"
|
||||||
command: "tflint"
|
command: "tflint"
|
||||||
args: [ "--version" ]
|
args: [ "--version" ]
|
||||||
expectedOutput: [ "TFLint version ([0-9]+\\.){2}[0-9]+\\n$" ]
|
expectedOutput: [ "TFLint version ([0-9]+\\.){2}[0-9]+\\n" ]
|
||||||
|
|
||||||
- name: "tfsec"
|
- name: "tfsec"
|
||||||
command: "tfsec"
|
command: "tfsec"
|
||||||
|
|
|
||||||
6
.github/.dive-ci.yaml
vendored
6
.github/.dive-ci.yaml
vendored
|
|
@ -1,13 +1,13 @@
|
||||||
rules:
|
rules:
|
||||||
# If the efficiency is measured below X%, mark as failed.
|
# If the efficiency is measured below X%, mark as failed.
|
||||||
# Expressed as a ratio between 0-1.
|
# Expressed as a ratio between 0-1.
|
||||||
lowestEfficiency: 0.99
|
lowestEfficiency: 0.987
|
||||||
|
|
||||||
# If the amount of wasted space is at least X or larger than X, mark as failed.
|
# If the amount of wasted space is at least X or larger than X, mark as failed.
|
||||||
# Expressed in B, KB, MB, and GB.
|
# Expressed in B, KB, MB, and GB.
|
||||||
highestWastedBytes: 12MB
|
highestWastedBytes: 21MB
|
||||||
|
|
||||||
# If the amount of wasted space makes up for X% or more of the image, mark as failed.
|
# If the amount of wasted space makes up for X% or more of the image, mark as failed.
|
||||||
# Note: the base image layer is NOT included in the total image size.
|
# Note: the base image layer is NOT included in the total image size.
|
||||||
# Expressed as a ratio between 0-1; fails if the threshold is met or crossed.
|
# Expressed as a ratio between 0-1; fails if the threshold is met or crossed.
|
||||||
highestUserWastedPercent: 0.02
|
highestUserWastedPercent: 0.025
|
||||||
|
|
|
||||||
16
Dockerfile
16
Dockerfile
|
|
@ -1,13 +1,15 @@
|
||||||
ARG TAG=3.10.1-alpine3.15@sha256:dce56d40d885d2c8847aa2a278a29d50450c8e3d10f9d7ffeb2f38dcc1eb0ea4
|
ARG TAG=3.11.1-alpine3.17
|
||||||
FROM python:${TAG} as builder
|
FROM python:${TAG} as builder
|
||||||
|
|
||||||
WORKDIR /bin_dir
|
WORKDIR /bin_dir
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
# Builder deps
|
# Builder deps
|
||||||
curl=~7 && \
|
curl=~8 && \
|
||||||
# Upgrade pip for be able get latest Checkov
|
# Upgrade packages for be able get latest Checkov
|
||||||
python3 -m pip install --no-cache-dir --upgrade pip
|
python3 -m pip install --no-cache-dir --upgrade \
|
||||||
|
pip \
|
||||||
|
setuptools
|
||||||
|
|
||||||
ARG PRE_COMMIT_VERSION=${PRE_COMMIT_VERSION:-latest}
|
ARG PRE_COMMIT_VERSION=${PRE_COMMIT_VERSION:-latest}
|
||||||
ARG TERRAFORM_VERSION=${TERRAFORM_VERSION:-latest}
|
ARG TERRAFORM_VERSION=${TERRAFORM_VERSION:-latest}
|
||||||
|
|
@ -60,7 +62,7 @@ RUN if [ "$INSTALL_ALL" != "false" ]; then \
|
||||||
RUN . /.env && \
|
RUN . /.env && \
|
||||||
if [ "$CHECKOV_VERSION" != "false" ]; then \
|
if [ "$CHECKOV_VERSION" != "false" ]; then \
|
||||||
( \
|
( \
|
||||||
apk add --no-cache gcc=~10 libffi-dev=~3 musl-dev=~1; \
|
apk add --no-cache gcc=~12 libffi-dev=~3 musl-dev=~1; \
|
||||||
[ "$CHECKOV_VERSION" = "latest" ] && pip3 install --no-cache-dir checkov \
|
[ "$CHECKOV_VERSION" = "latest" ] && pip3 install --no-cache-dir checkov \
|
||||||
|| pip3 install --no-cache-dir checkov==${CHECKOV_VERSION}; \
|
|| pip3 install --no-cache-dir checkov==${CHECKOV_VERSION}; \
|
||||||
apk del gcc libffi-dev musl-dev \
|
apk del gcc libffi-dev musl-dev \
|
||||||
|
|
@ -176,7 +178,7 @@ RUN apk add --no-cache \
|
||||||
bash=~5 \
|
bash=~5 \
|
||||||
# pre-commit-hooks deps: https://github.com/pre-commit/pre-commit-hooks
|
# pre-commit-hooks deps: https://github.com/pre-commit/pre-commit-hooks
|
||||||
musl-dev=~1 \
|
musl-dev=~1 \
|
||||||
gcc=~10 \
|
gcc=~12 \
|
||||||
# entrypoint wrapper deps
|
# entrypoint wrapper deps
|
||||||
su-exec=~0.2
|
su-exec=~0.2
|
||||||
|
|
||||||
|
|
@ -189,7 +191,7 @@ COPY --from=builder \
|
||||||
/usr/local/bin/checkov* \
|
/usr/local/bin/checkov* \
|
||||||
/usr/bin/
|
/usr/bin/
|
||||||
# Copy pre-commit packages
|
# Copy pre-commit packages
|
||||||
COPY --from=builder /usr/local/lib/python3.10/site-packages/ /usr/local/lib/python3.10/site-packages/
|
COPY --from=builder /usr/local/lib/python3.11/site-packages/ /usr/local/lib/python3.11/site-packages/
|
||||||
# Copy terrascan policies
|
# Copy terrascan policies
|
||||||
COPY --from=builder /root/ /root/
|
COPY --from=builder /root/ /root/
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue