🐳 Added support for Docker

This commit is contained in:
Stef 2020-07-22 04:27:01 -05:00
parent 2e0344928f
commit ab11b7fdf0
3 changed files with 29 additions and 1 deletions

20
Dockerfile Normal file
View 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"]