nsimplex / ktools

Cross-platform (but Unix oriented) tools for modding Klei Entertainment's game Don't Starve.
GNU General Public License v2.0
153 stars 44 forks source link

Docker container for portability #9

Open ghost opened 6 years ago

ghost commented 6 years ago

I accidentally deleted my Dockerfile for this but I will upload it once I figure it out again.

https://hub.docker.com/r/lramage94/ktools/

ghost commented 6 years ago

I knew I put it somewhere!

https://github.com/lramage94/dockerfiles/blob/master/ktools/Dockerfile

oxr463 commented 4 years ago
FROM gcc:latest

# Install ktools
RUN curl -o ktools.tar.gz -L https://github.com/nsimplex/ktools/archive/4.4.0.tar.gz && \
    tar -xf ktools.tar.gz && cd ktools-4.4.0/ && \
    ./configure && make -j1 && make install
victorpopkov commented 4 years ago

For those who are waiting for #13 and #14 to be merged and/or images published, you can use our dstmodders/docker-ktools as an alternative:

$ cd /path/to/your/data/
$ docker pull dstmodders/ktools:official
$ docker run --rm -v "$(pwd):/data/" dstmodders/ktools:official krane --version
$ docker run --rm -v "$(pwd):/data/" dstmodders/ktools:official ktech --version

Tag "official" points to the latest official release. You may also try our latest release, which includes #19 and #20:

$ docker pull dstmodders/ktools:latest

See tags for a list of all available versions.