CodePipeline action to lint dockerfiles with hadolint
Project description
@cloudcomponents/cdk-codepipeline-dockerfile-linter-action
CodePipeline action to lint dockerfiles with hadolint
Install
TypeScript/JavaScript:
npm i @cloudcomponents/cdk-codepipeline-dockerfile-linter-action
Python:
pip install cloudcomponents.cdk-codepipeline-dockerfile-linter-action
How to use
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
from aws_cdk.core import Construct, Stack, StackProps
from aws_cdk.aws_codecommit import Repository
from aws_cdk.aws_codepipeline import Pipeline, Artifact
from aws_cdk.aws_codepipeline_actions import CodeCommitSourceAction
from cloudcomponents.cdk_codepipeline_dockerfile_linter_action import CodePipelineDockerfileLinterAction
from cloudcomponents.cdk_codepipeline_anchore_inline_scan_action import CodePipelineAnchoreInlineScanAction
class ContainerAuditStack(Stack):
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, synthesizer=None, terminationProtection=None):
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, synthesizer=synthesizer, terminationProtection=terminationProtection)
repository = Repository(self, "Repository",
repository_name="container-audit-repository"
)
source_artifact = Artifact()
source_action = CodeCommitSourceAction(
action_name="CodeCommit",
repository=repository,
output=source_artifact,
branch="master"
)
linter_action = CodePipelineDockerfileLinterAction(
action_name="Linter",
input=source_artifact
)
vuln_scan_action = CodePipelineAnchoreInlineScanAction(
action_name="VulnScan",
input=source_artifact
)
Pipeline(self, "Pipeline",
pipeline_name="container-audit-pipeline",
stages=[StageProps(
stage_name="Source",
actions=[source_action]
), StageProps(
stage_name="Audit",
actions=[linter_action, vuln_scan_action]
)
]
)
API Reference
See API.md.
Example
See more complete examples.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cloudcomponents.cdk-codepipeline-dockerfile-linter-action-1.0.16.tar.gz.
File metadata
- Download URL: cloudcomponents.cdk-codepipeline-dockerfile-linter-action-1.0.16.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afb20a538b3fdfd126ee4153cb2c59234e9eb91cfb6ff34549e489cdfa80fc15
|
|
| MD5 |
75beb4edbae55cbfd8431b01eea3c177
|
|
| BLAKE2b-256 |
ab8699ec359b2e60cce7f2bb2dbe27b8d492159dd2b6ff46ee81f87f9c3458ff
|
File details
Details for the file cloudcomponents.cdk_codepipeline_dockerfile_linter_action-1.0.16-py3-none-any.whl.
File metadata
- Download URL: cloudcomponents.cdk_codepipeline_dockerfile_linter_action-1.0.16-py3-none-any.whl
- Upload date:
- Size: 17.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
500f3aad47a3a25b80e2938a70062944e9008f9c8f1d782f25c8fa94bd5b9a55
|
|
| MD5 |
a1cb708e0a46dd7212c66df177ab6bae
|
|
| BLAKE2b-256 |
e8d5009874ef09b460063e219bbbfde43bd1db86c2ad4e9a4910287aa2ddc023
|