File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,17 @@ RUN tce-load -wic \
23
23
linux-3.16.2_api_headers \
24
24
glibc_base-dev \
25
25
openssl-1.0.0-dev \
26
+ gdbm-dev \
26
27
ncurses-dev \
27
28
readline-dev \
29
+ sqlite3-dev \
30
+ liblzma-dev \
28
31
zlib_base-dev \
32
+ tk-dev \
33
+ libX11-dev \
34
+ libXss \
35
+ xorg-proto \
36
+ && sudo ln -s /usr/local/bin/file /usr/bin/file \
29
37
&& cd /tmp \
30
38
&& curl -SL "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz \
31
39
&& curl -SL "https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz.asc" -o python.tar.xz.asc \
@@ -67,14 +75,18 @@ RUN tce-load -wic \
67
75
gcc.tcz \
68
76
gcc_libs.tcz \
69
77
linux-3.16.2_api_headers.tcz \
70
- make.tcz; do \
78
+ make.tcz \
79
+ sqlite3-bin.tcz \
80
+ xz.tcz \
81
+ xorg-proto.tcz; do \
71
82
echo "Removing $PKG files" ; \
72
83
for F in `unsquashfs -l $PKG | grep squashfs-root | sed -e 's/squashfs-root//' `; do \
73
84
[ -f $F -o -L $F ] && sudo rm -f $F; \
74
85
done; \
75
86
INSTALLED=$(echo -n $PKG | sed -e s/.tcz//); \
76
87
sudo rm -f /usr/local/tce.installed/$INSTALLED; \
77
88
done \
89
+ && sudo rm -f /usr/bin/file \
78
90
&& sudo /sbin/ldconfig \
79
91
&& rm -rf /tmp/tce/optional/*
80
92
You can’t perform that action at this time.
0 commit comments