File size: 165 Bytes
df2595f
b531e76
df2595f
 
b531e76
cb4eb1f
 
dbc376e
cb4eb1f
dbc376e
df2595f
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.10

WORKDIR /app
RUN chmod 777 /app

COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt

COPY . .

CMD nohup python3 bot.py &