Add containerized xstow static build
This commit is contained in:
25
Dockerfile
Normal file
25
Dockerfile
Normal 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
|
Reference in New Issue
Block a user