mirror of
https://github.com/anasty17/mirror-leech-telegram-bot.git
synced 2025-01-05 10:36:52 +08:00
f97076bf49
Signed-off-by: anasty17 <e.anastayyar@gmail.com>
14 lines
228 B
Docker
14 lines
228 B
Docker
FROM anasty17/mltb:latest
|
|
|
|
WORKDIR /usr/src/app
|
|
RUN chmod 777 /usr/src/app
|
|
|
|
RUN python3 -m venv mltbenv
|
|
|
|
COPY requirements.txt .
|
|
RUN mltbenv/bin/pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["bash", "start.sh"]
|