supervisord

This commit is contained in:
Mateusz Gruszczyński
2025-11-01 19:31:56 +01:00
parent a58bff668f
commit bf6817456c

View File

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