File size: 193 Bytes
5231b10
 
1b639c7
5231b10
 
 
1b639c7
5231b10
a8b997a
 
5231b10
 
dddb05a
5231b10
a8b997a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.9-slim

USER root

WORKDIR /app

COPY . /app

RUN apt-get update && apt-get install -y supervisor

RUN pip install -r requirements.txt

EXPOSE 8080 7860

CMD ["supervisord", "-n"]