-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial OCI spec for container for #655
- Loading branch information
1 parent
89f6c35
commit 22b66e3
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ignore everything | ||
* | ||
!/src/validations/constraints |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
ARG GIT_IMAGE=bitnami/git:2.46.0 | ||
ARG MAVEN_IMAGE=maven:3.9.8-eclipse-temurin-21 | ||
ARG MAVEN_DEP_PLUGIN_VERSION=3.8.0 | ||
ARG OSCAL_CLI_VERSION=2.0.2 | ||
ARG OSCAL_CLI_INSTALL_PATH=/opt/oscal | ||
|
||
FROM ${MAVEN_IMAGE} as cli_downloader | ||
ARG MAVEN_DEP_PLUGIN_VERSION | ||
ARG OSCAL_CLI_VERSION | ||
ARG OSCAL_CLI_INSTALL_PATH | ||
RUN apt-get update -y && \ | ||
apt-get install -y unzip && \ | ||
mkdir -p /opt/oscal-cli && \ | ||
mvn \ | ||
org.apache.maven.plugins:maven-dependency-plugin:${MAVEN_DEP_PLUGIN_VERSION}:copy \ | ||
-DoutputDirectory=/opt/oscal-cli \ | ||
-DremoteRepositories=https://repo1.maven.org/maven2 \ | ||
-Dartifact=dev.metaschema.oscal:oscal-cli-enhanced:${OSCAL_CLI_VERSION}:zip:oscal-cli && \ | ||
cd /opt/oscal-cli && unzip *.zip && rm -f *.zip | ||
|
||
FROM cli_downloader | ||
LABEL org.opencontainers.image.authors="FedRAMP Automation Team <[email protected]>" | ||
LABEL org.opencontainers.image.documentation="https://automate.fedramp.gov" | ||
LABEL org.opencontainers.image.source="https://github.com/GSA/fedramp-automation/tree/main/Dockerfile" | ||
LABEL org.opencontainers.image.vendor="GSA Technology Transformation Services" | ||
LABEL org.opencontainers.image.title="FedRAMP Validation Tools" | ||
LABEL org.opencontainers.image.description="FedRAMP's tools for validating OSCAL data" | ||
LABEL org.opencontainers.image.licenses="CC0-1.0" | ||
ARG OSCAL_CLI_INSTALL_PATH | ||
COPY --from=cli_downloader /opt/oscal-cli /opt/ | ||
RUN mkdir -p /opt/fedramp | ||
ENV PATH="$PATH:/opt/oscal-cli/bin" | ||
WORKDIR /app | ||
ENTRYPOINT [ "/opt/oscal-cli/bin/oscal-cli" ] |