Add Dockerfile

This commit is contained in:
Vinicius Costa 2022-09-15 14:01:21 -03:00
parent a32f386b75
commit bd8458963a

15
Dockerfile Normal file
View file

@ -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"]