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