forked from idaholab/Malcolm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' of https://github.com/mmguero-dev/Malcolm …
…into v643_merge_idaholab
- Loading branch information
Showing
33 changed files
with
1,208 additions
and
205 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,4 +1,4 @@ | ||
FROM alpine:3.16 | ||
FROM alpine:3.17 | ||
|
||
# Copyright (c) 2020 Battelle Energy Alliance, LLC. All rights reserved. | ||
LABEL maintainer="[email protected]" | ||
|
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,4 +1,4 @@ | ||
FROM docker.elastic.co/beats/filebeat-oss:8.5.1 | ||
FROM docker.elastic.co/beats/filebeat-oss:8.5.2 | ||
|
||
# Copyright (c) 2022 Battelle Energy Alliance, LLC. All rights reserved. | ||
LABEL maintainer="[email protected]" | ||
|
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,4 +1,4 @@ | ||
FROM alpine:3.16 | ||
FROM alpine:3.17 | ||
|
||
# Copyright (c) 2022 Battelle Energy Alliance, LLC. All rights reserved. | ||
LABEL maintainer="[email protected]" | ||
|
@@ -26,13 +26,13 @@ ENV LISTJS_VERSION v1.5.0 | |
|
||
RUN apk update --no-cache && \ | ||
apk upgrade --no-cache && \ | ||
apk --no-cache add bash php8 php8-fpm php8-mysqli php8-json php8-openssl php8-curl php8-fileinfo \ | ||
php8-zlib php8-xml php8-phar php8-intl php8-dom php8-xmlreader php8-ctype php8-session \ | ||
php8-mbstring php8-gd nginx supervisor curl inotify-tools file psmisc shadow openssl tini | ||
apk --no-cache add bash php81 php81-fpm php81-mysqli php81-json php81-openssl php81-curl php81-fileinfo \ | ||
php81-zlib php81-xml php81-phar php81-intl php81-dom php81-xmlreader php81-ctype php81-session \ | ||
php81-mbstring php81-gd nginx supervisor curl inotify-tools file psmisc shadow openssl tini | ||
|
||
COPY name-map-ui/config/nginx.conf /etc/nginx/nginx.conf | ||
COPY name-map-ui/config/fpm-pool.conf /etc/php8/php-fpm.d/www.conf | ||
COPY name-map-ui/config/php.ini /etc/php8/conf.d/custom.ini | ||
COPY name-map-ui/config/fpm-pool.conf /etc/php81/php-fpm.d/www.conf | ||
COPY name-map-ui/config/php.ini /etc/php81/conf.d/custom.ini | ||
COPY name-map-ui/config/supervisord.conf /etc/supervisord.conf | ||
COPY name-map-ui/config/supervisor_logstash_ctl.conf /etc/supervisor/logstash/supervisord.conf | ||
COPY name-map-ui/config/supervisor_netbox_ctl.conf /etc/supervisor/netbox/supervisord.conf | ||
|
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
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 |
---|---|---|
|
@@ -25,13 +25,15 @@ WORKDIR /site | |
# build documentation, remove unnecessary files, then massage a bit to work nicely with NGINX (which will be serving it) | ||
RUN find /site -type f -name "*.md" -exec sed -i "s/{{[[:space:]]*site.github.build_revision[[:space:]]*}}/$VCS_REVISION/g" "{}" \; && \ | ||
( [ -n "${GITHUB_TOKEN}" ] && export JEKYLL_GITHUB_TOKEN="${GITHUB_TOKEN}" || true ) && \ | ||
sed -i "s/^\(show_downloads:\).*/\1 false/" /site/_config.yml && \ | ||
sed -i -e "/^mastodon:/,+2d" /site/_config.yml && \ | ||
docker-entrypoint.sh bundle exec jekyll build && \ | ||
find /site/_site -type f -name "*.md" -delete && \ | ||
find /site/_site -type f -name "*.html" -exec sed -i "s@/\(docs\|assets\)@/readme/\1@g" "{}" \; && \ | ||
find /site/_site -type f -name "*.html" -exec sed -i 's@\(href=\)"/"@\1"/readme/"@g' "{}" \; | ||
|
||
# build NGINX image | ||
FROM alpine:3.16 | ||
FROM alpine:3.17 | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL org.opencontainers.image.authors='[email protected]' | ||
|
@@ -141,7 +143,7 @@ RUN set -x ; \ | |
" ; \ | ||
apk update --no-cache; \ | ||
apk upgrade --no-cache; \ | ||
apk add --no-cache curl shadow; \ | ||
apk add --no-cache curl shadow libressl; \ | ||
addgroup -g ${DEFAULT_GID} -S ${PGROUP} ; \ | ||
adduser -S -D -H -u ${DEFAULT_UID} -h /var/cache/nginx -s /sbin/nologin -G ${PGROUP} -g ${PUSER} ${PUSER} ; \ | ||
addgroup ${PUSER} shadow ; \ | ||
|
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
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
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
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.