File size: 451 Bytes
7278088
cfec716
 
 
7278088
 
cfec716
 
 
7278088
 
cfec716
7278088
 
cfec716
7278088
cfec716
7278088
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM python:3.10-slim

WORKDIR /app

COPY requirements.txt ./
RUN pip install --no-cache-dir --upgrade pip \
    build-essential \
    curl \
    git \
    && pip install --no-cache-dir -r requirements.txt \
    && apt-get update && apt-get install -y supervisor && rm -rf /var/lib/apt/lists/*

COPY . ./
COPY supervisor.conf /etc/supervisor/conf.d/supervisor.conf

EXPOSE 8000 8501

CMD ["supervisord", "-c", "/etc/supervisor/conf.d/supervisor.conf"]