From d4407852be5e48b6dbf172cfaeecff38e6d54a09 Mon Sep 17 00:00:00 2001 From: Cherry Sakura Date: Fri, 22 Dec 2023 01:47:49 +0000 Subject: [PATCH] add supervisor --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0eae3f9..a296860 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN echo '#!/bin/bash\nphp artisan "$@"' > /usr/bin/art && \ echo "deb http://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware" >> /etc/apt/sources.list && \ rm -rf /etc/apt/sources.list.d/debian.sources && \ apt update && \ - apt install -y --no-install-recommends wget lsb-release unzip ca-certificates && \ + apt install -y --no-install-recommends wget lsb-release unzip ca-certificates supervisor && \ wget --no-check-certificate -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg && \ sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' && \ apt update && \