Skip to content

Instantly share code, notes, and snippets.

@Kosmas
Forked from henrik-muehe/Dockerfile
Created July 6, 2014 23:12
Show Gist options
  • Save Kosmas/54a630f3b26e2126871b to your computer and use it in GitHub Desktop.
Save Kosmas/54a630f3b26e2126871b 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