mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-05-27 04:07:12 +00:00
🐳 Added support for Docker
This commit is contained in:
parent
2e0344928f
commit
ab11b7fdf0
3 changed files with 29 additions and 1 deletions
20
Dockerfile
Normal file
20
Dockerfile
Normal file
|
@ -0,0 +1,20 @@
|
|||
FROM alpine:3.12.0
|
||||
|
||||
#Installing all the dependencies
|
||||
RUN apk add gcc libsodium-dev make autoconf build-base
|
||||
|
||||
WORKDIR /mkp224o
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN ["./autogen.sh"]
|
||||
|
||||
RUN ["./configure"]
|
||||
|
||||
RUN ["make"]
|
||||
|
||||
RUN cp /mkp224o/mkp224o /usr/bin/
|
||||
|
||||
WORKDIR /root
|
||||
|
||||
CMD ["sh"]
|
Loading…
Add table
Add a link
Reference in a new issue