From 38d7cbae605ee390287b28c828abbba05d700334 Mon Sep 17 00:00:00 2001 From: ivamp Date: Fri, 22 Dec 2023 14:44:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20roadrunner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a296860..a571376 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM debian:12-slim - RUN echo '#!/bin/bash\nphp artisan "$@"' > /usr/bin/art && \ chmod +x /usr/bin/art && \ DEBIAN_FRONTEND=noninteractive echo "deb http://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free non-free-firmware" > /etc/apt/sources.list && \ @@ -27,3 +26,9 @@ RUN pecl channel-update pecl.php.net && MAKEFLAGS="-j $(nproc)" pecl install gr composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/ COPY php.ini /etc/php/8.3/cli/conf.d/99-custom.ini + +# Setup roadrunner +RUN wget "http://192.168.81.102/roadrunner-2023.3.8-linux-amd64.deb" -O rr.deb && \ + dpkg -i rr.deb && \ + rm -rf rr.deb +