From 0a908ec55cbbbea55c316529b75c35bc4577c49e Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 24 Mar 2026 14:52:53 -0700 Subject: [PATCH] change from pip to built-in packages --- Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51ee92d..9af7204 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,16 +6,12 @@ FROM php:apache RUN apt-get update && apt-get install -y \ python3 \ python3-pip \ + python3-flask \ + python3-yaml \ nginx \ supervisor \ && rm -rf /var/lib/apt/lists/* -# Install Python dependencies -# (add any other libraries you need here) -RUN pip3 install --no-cache-dir \ - flask \ - pyyaml - # Copy your application code & config files # Website Files COPY www/ /var/www/html