mirror of
https://github.com/anasty17/mirror-leech-telegram-bot.git
synced 2025-01-08 12:07:33 +08:00
3145af0416
switch to ubuntu 24.04 update monogo to python3.12 Check if ur connection changed or not after setting python3.12 version in ur cluster Signed-off-by: anasty17 <e.anastayyar@gmail.com>
12 lines
212 B
Docker
12 lines
212 B
Docker
FROM anasty17/mltb:latest
|
|
|
|
WORKDIR /usr/src/app
|
|
RUN chmod 777 /usr/src/app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip3 install --no-cache-dir -r requirements.txt --break-system-packages
|
|
|
|
COPY . .
|
|
|
|
CMD ["bash", "start.sh"]
|