Skip to content
This repository was archived by the owner on Mar 11, 2019. It is now read-only.

Commit 9f5d165

Browse files
committed
enh: create Dockerfile based on Slackware 14.1 for x86_64 builds
1 parent aa7ec72 commit 9f5d165

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM vbatts/slackware:14.1
2+
MAINTAINER Jonathan Passerat-Palmbach, Imperial College London <j.passerat-palmbach@imperial.ac.uk>
3+
4+
# Install development packages
5+
RUN wget -r -np http://mirrors.slackware.com/slackware/slackware64-14.1/slackware64/{a,d}
6+
RUN ls mirrors.slackware.com/slackware/slackware64-14.1/slackware64/*/*.t?z | xargs -n 1 installpkg
7+
8+
# Add missing uthash lib for CARE
9+
RUN wget -r -np http://packages.slackonly.com/pub/packages/14.1-x86_64/libraries/uthash/uthash-1.9.9-x86_64-1_slack.txz -O uthash.txz && installpkg uthash.txz
10+
11+
WORKDIR /tmp/proot-static-build
12+
13+
ENTRYPOINT make glibc-version=glibc-2.18 -f GNUmakefile proot care -j4
14+

0 commit comments

Comments
 (0)