mirror of
https://github.com/nadrad/h-m-m.git
synced 2026-03-14 20:35:45 +01:00
13 lines
209 B
Docker
13 lines
209 B
Docker
FROM php:cli
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
libonig-dev xclip xsel wl-clipboard
|
|
|
|
RUN docker-php-ext-install mbstring
|
|
|
|
COPY ./h-m-m .
|
|
|
|
CMD ./h-m-m $file
|