diff options
author | Malfurious <m@lfurio.us> | 2023-09-16 08:07:37 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-09-16 08:07:37 -0400 |
commit | 77ae1784961d203d47c9db8736570a2d1e90f7b7 (patch) | |
tree | 57e0339c501afb6939031f41fd769b3d04e5b582 /docker/Dockerfile.cgit | |
parent | a6f2c9e34b7a0bdaff2a44b54ca7999728f36773 (diff) | |
parent | 51b47c3d0eb8e9c638d002aec566ef158ff5d0cd (diff) | |
download | srcnode-77ae1784961d203d47c9db8736570a2d1e90f7b7.tar.gz srcnode-77ae1784961d203d47c9db8736570a2d1e90f7b7.zip |
Merge branch 'cgit-alpine-port'
Port the cgit docker image to build from Alpine Linux, and finish the
file tree clean up started by the previous merge.
* cgit-alpine-port:
cgit: Update SSH clone URLs
cgit: Update scan-path / repository mount location
cgit: Update user and file paths for alpine distro
cgit: Port Dockerfile for alpine base
cgit: Consolidate config files into a single directory
Diffstat (limited to 'docker/Dockerfile.cgit')
-rw-r--r-- | docker/Dockerfile.cgit | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/docker/Dockerfile.cgit b/docker/Dockerfile.cgit deleted file mode 100644 index 768a53d..0000000 --- a/docker/Dockerfile.cgit +++ /dev/null @@ -1,16 +0,0 @@ -# https://git.zx2c4.com/cgit/ -# https://wiki.archlinux.org/title/Cgit - -FROM archlinux - -# Install cgit and webserver -RUN pacman-key --init -RUN pacman -Syu --needed --noconfirm apache cgit - -# Copy configuration files -# Back-end datastore is expected to be mounted to /data (read-only) -COPY httpd.conf /etc/httpd/conf/httpd.conf -COPY cgitrc /etc/cgitrc - -EXPOSE 80 -CMD ["/usr/bin/httpd", "-DFOREGROUND"] |