mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-05-14 22:12:49 +00:00
17 lines
285 B
Text
17 lines
285 B
Text
|
FROM alpine:3.12.0
|
||
|
|
||
|
#Installing all the dependencies
|
||
|
RUN apk add --no-cache gcc libsodium-dev make autoconf build-base
|
||
|
|
||
|
WORKDIR /mkp224o
|
||
|
|
||
|
COPY . /mkp224o/
|
||
|
|
||
|
RUN ./autogen.sh \
|
||
|
&& ./configure \
|
||
|
&& make \
|
||
|
&& cp /mkp224o/mkp224o /usr/local/bin/
|
||
|
|
||
|
WORKDIR /root
|
||
|
ENTRYPOINT ["mkp224o"]
|