Add Dockerfile
This commit is contained in:
parent
e87e74f966
commit
2621956e7b
1 changed files with 10 additions and 0 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
FROM debian:12
|
||||||
|
|
||||||
|
RUN apt update && apt install -y curl wget php-cli php-mbstring git unzip nodejs npm && apt-get clean
|
||||||
|
|
||||||
|
RUN curl -sS https://getcomposer.org/installer -o composer-setup.php &&\
|
||||||
|
php composer-setup.php --install-dir=/usr/local/bin --filename=composer &&\
|
||||||
|
rm composer-setup.php
|
||||||
|
|
||||||
|
RUN curl -sS https://github.com/ChristophWurst/krankerl/releases/download/v0.14.0/krankerl -o /usr/local/bin/krankerl &&\
|
||||||
|
chmod +x /usr/local/bin/krankerl
|
Loading…
Reference in a new issue