diff --git a/Dockerfile b/Dockerfile index 2a9eb85..a506983 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,6 @@ ENV PYTHONUNBUFFERED=1 \ # Install dependencies RUN apt-get update && apt-get install -y \ - python3 \ - python3-pip \ haproxy \ supervisor \ openssl \ @@ -17,7 +15,7 @@ WORKDIR /app # Copy requirements and install COPY requirements.txt . -RUN pip3 install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir -r requirements.txt # Copy application COPY app.py .