Skip to content

Commit 7ecda28

Browse files
committed
otw - Fixed the dev dockerfile with a hack for fuse.
1 parent a2761c7 commit 7ecda28

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

indigo/dev/Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ FROM opencog/ros-indigo-deps
77
MAINTAINER Mandeep Singh Bhatia "[email protected]"
88
MAINTAINER David Hart "[email protected]"
99

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\nexit 0\n' > DEBIAN/postinst && \
20+
dpkg-deb -b . /fuse.deb && \
21+
dpkg -i /fuse.deb && \
22+
rm -rf /tmp/fuse-hack
23+
1024
RUN apt-get -y update
1125
RUN apt-get -y install camorama geany
1226
RUN apt-get -y install cmake-curses-gui git mercurial subversion

0 commit comments

Comments
 (0)