Add containerized xstow static build

This commit is contained in:
2025-10-06 20:01:17 -04:00
commit 0c704e4872
5 changed files with 73 additions and 0 deletions

25
Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
FROM rockylinux:8
RUN dnf -y install epel-release && \
/usr/bin/crb enable && \
dnf -y install \
git \
autoconf \
automake \
libtool \
make \
gettext \
texinfo \
gcc-c++ \
glibc-static \
libstdc++-static \
&& dnf clean all
RUN git clone --recurse-submodules \
https://github.com/majorkingleo/xstow.git /src
WORKDIR /src
RUN cp README.md README && \
autoreconf -fi && \
./configure --enable-static && \
make