summaryrefslogtreecommitdiffstats
path: root/cgit/Dockerfile
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2024-08-05 03:46:19 -0400
committerMalfurious <m@lfurio.us>2024-08-07 20:56:16 -0400
commit93e4f015f23d42bccbe306bf02fef17fe47f0f59 (patch)
treed8d0a47b95f7712cc55a9180eeb9a16ec6f5594e /cgit/Dockerfile
parentf1969957af9cb23c47a464d7eccff02d766357c7 (diff)
downloadsrcnode-93e4f015f23d42bccbe306bf02fef17fe47f0f59.tar.gz
srcnode-93e4f015f23d42bccbe306bf02fef17fe47f0f59.zip
Rename project to srcnode
"Normalmode" is the name of the hosted platform that this software package was constructed to power. To better distinguish between the two and to give this project more of a standalone identity, it is rebranded with a new name. Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to '')
-rw-r--r--cgit/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/cgit/Dockerfile b/cgit/Dockerfile
index 28891c7..904712f 100644
--- a/cgit/Dockerfile
+++ b/cgit/Dockerfile
@@ -1,16 +1,16 @@
# https://git.zx2c4.com/cgit/
FROM alpine
-ARG NORMALMODE_VERSION
+ARG SRCNODE_VERSION
RUN apk --no-cache upgrade
RUN apk --no-cache add apache2 cgit
COPY httpd.conf /etc/apache2/
COPY cgitrc /etc/
-COPY logo.png /usr/share/normalmode/
+COPY logo.png /usr/share/srcnode/
-RUN echo "<div class=\"footer\">$(apk version cgit | awk '/cgit/{print $1}') | $NORMALMODE_VERSION</div>" >/footer
+RUN echo "<div class=\"footer\">$(apk version cgit | awk '/cgit/{print $1}') | $SRCNODE_VERSION</div>" >/footer
EXPOSE 80
CMD ["/usr/sbin/httpd", "-DFOREGROUND"]