init
This commit is contained in:
commit
197538d32e
20
Dockerfile
Normal file
20
Dockerfile
Normal file
|
@ -0,0 +1,20 @@
|
|||
FROM ubuntu:24.04
|
||||
|
||||
LABEL maintainer="CF <hello@ittavern.com>"
|
||||
|
||||
RUN apt update && \
|
||||
apt install -y gcc libc6-dev libsodium-dev make autoconf git
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN git clone https://github.com/cathugger/mkp224o.git && \
|
||||
cd mkp224o && \
|
||||
git checkout master && \
|
||||
./autogen.sh && \
|
||||
./configure --enable-amd64-51-30k && \
|
||||
make
|
||||
|
||||
WORKDIR /app/mkp224o
|
||||
|
||||
ENTRYPOINT [ "./mkp224o" ]
|
||||
|
20
README.md
Normal file
20
README.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# General
|
||||
|
||||
Been using it for a while, but not optimized and a something I want to learn.
|
||||
|
||||
# USAGE
|
||||
|
||||
`git clone https://git.ittavern.com/CaffeineFueled/mkp224o-docker.git`
|
||||
|
||||
`cd mkp224o-docker`
|
||||
|
||||
`podman build -t mkp .`
|
||||
|
||||
`mkdir keys`
|
||||
|
||||
`podman run --rm -it -v $PWD/keys:/keys localhost/mkp -d /keys hehehehe`
|
||||
|
||||
# Official Docker Image
|
||||
|
||||
There is an official [Dockerfile](https://github.com/cathugger/mkp224o/pull/99/commits/4e635f56d2432960643f857ad1fb529d2e818621). More information in the [official repository of mkp224o](https://github.com/cathugger/mkp224o?tab=readme-ov-file#faq-and-other-useful-info).
|
||||
|
Loading…
Reference in a new issue