Skip to content

Instantly share code, notes, and snippets.

@crimeminister
Forked from henrik-muehe/Dockerfile
Created February 14, 2014 18:06
Show Gist options
  • Save crimeminister/9005924 to your computer and use it in GitHub Desktop.
Save crimeminister/9005924 to your computer and use it in GitHub Desktop.
...
# Fake a fuse install
RUN apt-get install libfuse2
RUN cd /tmp ; apt-get download fuse
RUN cd /tmp ; dpkg-deb -x fuse_* .
RUN cd /tmp ; dpkg-deb -e fuse_*
RUN cd /tmp ; rm fuse_*.deb
RUN cd /tmp ; echo -en '#!/bin/bash\nexit 0\n' > DEBIAN/postinst
RUN cd /tmp ; dpkg-deb -b . /fuse.deb
RUN cd /tmp ; dpkg -i /fuse.deb
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment