File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,20 @@ FROM opencog/ros-indigo-deps
7
7
MAINTAINER Mandeep Singh Bhatia
"[email protected] "
8
8
MAINTAINER David Hart
"[email protected] "
9
9
10
+ # Fake a fuse install; openjdk pulls this in
11
+ # https://github.com/dotcloud/docker/issues/514
12
+ # https://gist.github.com/henrik-muehe/6155333
13
+ RUN mkdir -p /tmp/fuse-hack && cd /tmp/fuse-hack && \
14
+ apt-get install libfuse2 && \
15
+ apt-get download fuse && \
16
+ dpkg-deb -x fuse_* . && \
17
+ dpkg-deb -e fuse_* && \
18
+ rm fuse_*.deb && \
19
+ echo -en '#!/bin/bash\n exit 0\n ' > DEBIAN/postinst && \
20
+ dpkg-deb -b . /fuse.deb && \
21
+ dpkg -i /fuse.deb && \
22
+ rm -rf /tmp/fuse-hack
23
+
10
24
RUN apt-get -y update
11
25
RUN apt-get -y install camorama geany
12
26
RUN apt-get -y install cmake-curses-gui git mercurial subversion
You can’t perform that action at this time.
0 commit comments