add act_runner build job

This commit is contained in:
2026-02-09 11:05:47 +03:00
parent 2c1acb0fbb
commit c5d1b39de7
2 changed files with 31 additions and 0 deletions

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
FROM fedora:latest
LABEL name="Tracd Standalone Server"
LABEL project="tracd"
EXPOSE 8055
ENV USER_UID=2000
ENV USER_GID=2000
RUN dnf -y install trac httpd-tools ;\
dnf -y clean all
RUN groupadd --gid $USER_GID trac ;\
useradd --shell /usr/sbin/nologin --create-home --home-dir /home/trac --uid $USER_UID --gid $USER_GID trac
WORKDIR /home/trac
USER trac
#htpasswd .htpasswd user
CMD /usr/bin/tracd --port 8055 --basic-auth="*,.htpasswd,realm" $(ls -d */)