-
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.
Now add FR constraint files for #655
- Loading branch information
1 parent
22b66e3
commit e86560b
Showing
1 changed file
with
13 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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
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 | ||
ARG FEDRAMP_AUTO_GIT_URL=https://github.com/GSA/fedramp-automation.git | ||
ARG FEDRAMP_AUTO_GIT_REF=feature/external-constraints | ||
|
||
FROM ${MAVEN_IMAGE} as cli_downloader | ||
ARG MAVEN_DEP_PLUGIN_VERSION | ||
|
@@ -18,6 +21,15 @@ RUN apt-get update -y && \ | |
-Dartifact=dev.metaschema.oscal:oscal-cli-enhanced:${OSCAL_CLI_VERSION}:zip:oscal-cli && \ | ||
cd /opt/oscal-cli && unzip *.zip && rm -f *.zip | ||
|
||
FROM alpine:3.20.2 as fedramp_data_downloader | ||
ARG FEDRAMP_AUTO_GIT_URL | ||
ARG FEDRAMP_AUTO_GIT_REF | ||
RUN apk add --no-cache git && \ | ||
mkdir -p /usr/local/src && \ | ||
cd /usr/local/src && \ | ||
git clone ${FEDRAMP_AUTO_GIT_URL} && \ | ||
git checkout ${FEDRAMP_AUTO_GIT_REF} | ||
|
||
FROM cli_downloader | ||
LABEL org.opencontainers.image.authors="FedRAMP Automation Team <[email protected]>" | ||
LABEL org.opencontainers.image.documentation="https://automate.fedramp.gov" | ||
|
@@ -29,6 +41,7 @@ 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 | ||
COPY --from=fedramp_data_downloader /usr/local/src/fedramp-automation/src/validations/constraints/*.xml /opt/fedramp | ||
ENV PATH="$PATH:/opt/oscal-cli/bin" | ||
WORKDIR /app | ||
ENTRYPOINT [ "/opt/oscal-cli/bin/oscal-cli" ] |