-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker container for portability #9
Comments
I knew I put it somewhere! https://github.com/lramage94/dockerfiles/blob/master/ktools/Dockerfile |
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 |
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. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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/
The text was updated successfully, but these errors were encountered: