Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ethancedwards8/0d5254bf460214a91135223f41b41f5e to your computer and use it in GitHub Desktop.
Save ethancedwards8/0d5254bf460214a91135223f41b41f5e to your computer and use it in GitHub Desktop.
Fiche Dockerfile
FROM gcc:10-buster
RUN apt update \
&& apt install git \
&& rm -rf /var/cache/apt \
&& git clone https://github.com/solusipse/fiche \
&& make \
&& make install
CMD ["/usr/local/bin/fiche", "-d", "scratch.althahosting.com", "-o", "/tmp/log"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment