diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4f1a821 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +FROM php:cli + +WORKDIR /app + +COPY ./h-m-m . + +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + libonig-dev xclip xsel wl-clipboard + +RUN docker-php-ext-install pcntl mbstring + +RUN chmod +x h-m-m + +CMD ["./h-m-m"] \ No newline at end of file