-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from idaholab/taxii
Updates to STIG
- Loading branch information
Showing
87 changed files
with
40,590 additions
and
32,171 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 |
---|---|---|
|
@@ -16,3 +16,4 @@ out | |
**/*.old | ||
**/*.bak | ||
**/*.swp | ||
src/static/index.js |
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,15 @@ | ||
FROM node:lts-alpine3.13 | ||
RUN mkdir /stig | ||
# This is likely excessive, we may wish to slim down the needed files at some point | ||
WORKDIR /stig | ||
COPY assets assets | ||
COPY db_setup db_setup | ||
COPY images images | ||
COPY src src | ||
COPY *.ts ./ | ||
COPY *.json ./ | ||
COPY *.js ./ | ||
COPY *.lock ./ | ||
RUN npm install --quiet | ||
CMD ["npm", "start"] | ||
|
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,19 @@ | ||
FROM node:lts-alpine3.13 | ||
COPY cert.crt /cert.crt | ||
COPY cert.crt /usr/local/share/ca-certificates/cert.crt | ||
RUN cat /usr/local/share/ca-certificates/cert.crt >> /etc/ssl/certs/ca-certificates.crt | ||
RUN mkdir /stig | ||
# This is likely excessive, we may wish to slim down the needed files at some point | ||
WORKDIR /stig | ||
COPY assets assets | ||
COPY db_setup db_setup | ||
COPY images images | ||
COPY src src | ||
COPY *.ts ./ | ||
COPY *.json ./ | ||
COPY *.js ./ | ||
COPY *.lock ./ | ||
RUN npm config set strict-ssl false | ||
RUN npm install --quiet | ||
CMD ["npm", "start"] | ||
|
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
Oops, something went wrong.