26 lines
		
	
	
		
			518 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			518 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| 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
 |