Skip to content

Commit

Permalink
Add Dockerfile for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Granjow committed Apr 10, 2020
1 parent 60b8c9d commit 134a9ea
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,13 @@ This page runs with wiki2xhtml which creates HTML files from Wikitext. To run it
make

and the web page will most likely be built (goes to the html/ subdirectory). If not, you might not be using a unix based system.
wiki2xhtml is also available [on git](git://wiki2xhtml.git.sourceforge.net/gitroot/wiki2xhtml/wiki2xhtml).
wiki2xhtml is also available [on git](git://wiki2xhtml.git.sourceforge.net/gitroot/wiki2xhtml/wiki2xhtml).

Requirements:

* `rsync`
* `imagemagick`
* `java`

Alternatively, use the [Dockerfile](docker/Dockerfile) (which builds `granjow/wiki2xhtml`)
which contains those dependencies.
5 changes: 5 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM ubuntu:20.04

RUN apt-get update && \
apt-get install -y openjdk-13-jre-headless imagemagick rsync make && \
apt-get clean

0 comments on commit 134a9ea

Please sign in to comment.