mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-04-28 17:48:07 +00:00
added docker support
This commit is contained in:
parent
2e0344928f
commit
95a7e0580a
2 changed files with 20 additions and 0 deletions
4
contrib/docker/.dockerignore
Normal file
4
contrib/docker/.dockerignore
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
Dockerfile
|
||||||
|
.dockerignore
|
||||||
|
README.txt
|
||||||
|
.git
|
16
contrib/docker/Dockerfile
Normal file
16
contrib/docker/Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
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"]
|
Loading…
Add table
Reference in a new issue