init
This commit is contained in:
commit
197538d32e
2 changed files with 40 additions and 0 deletions
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" ]
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue