This repository was archived by the owner on May 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDockerfile
More file actions
71 lines (61 loc) Β· 3.13 KB
/
Dockerfile
File metadata and controls
71 lines (61 loc) Β· 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# π½πΊππβ’πΉππ€ππβππππΉπ π₯ β‘οΈ
# Created by: RoxyBasicNeedBot
# GitHub: https://github.com/RoxyBasicNeedBot
# Telegram: https://t.me/roxybasicneedbot1
# Website: https://roxybasicneedbot.unaux.com/?i=1
# YouTube: @roxybasicneedbot
#
# Portfolio: https://aratt.ai/@roxybasicneedbot
#
# Bot & Website Developer π€
# Creator of RoxyBasicNeedBot & many automation tools β‘
# Skilled in Python, APIs, and Web Development
#
# Β© 2026 RoxyBasicNeedBot. All Rights Reserved.
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Use the official Python image
FROM python:3.10-slim
RUN apt-get update -qq && apt-get -y install ffmpeg mkvtoolnix
# Set the working directory in the container
WORKDIR /app
# Copy the dependencies file to the working directory
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# π½πΊππβ’πΉππ€ππβππππΉπ π₯ β‘οΈ
# Created by: RoxyBasicNeedBot
# GitHub: https://github.com/RoxyBasicNeedBot
# Telegram: https://t.me/roxybasicneedbot1
# Website: https://roxybasicneedbot.unaux.com/?i=1
# YouTube: @roxybasicneedbot
#
# Portfolio: https://aratt.ai/@roxybasicneedbot
#
# Bot & Website Developer π€
# Creator of RoxyBasicNeedBot & many automation tools β‘
# Skilled in Python, APIs, and Web Development
#
# Β© 2026 RoxyBasicNeedBot. All Rights Reserved.
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
COPY requirements.txt .
# Install any needed dependencies specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application code to the working directory
COPY . .
# Command to run the application
CMD ["python", "bot.py"]
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# π½πΊππβ’πΉππ€ππβππππΉπ π₯ β‘οΈ
# Created by: RoxyBasicNeedBot
# GitHub: https://github.com/RoxyBasicNeedBot
# Telegram: https://t.me/roxybasicneedbot1
# Website: https://roxybasicneedbot.unaux.com/?i=1
# YouTube: @roxybasicneedbot
#
# Portfolio: https://aratt.ai/@roxybasicneedbot
#
# Bot & Website Developer π€
# Creator of RoxyBasicNeedBot & many automation tools β‘
# Skilled in Python, APIs, and Web Development
#
# Β© 2026 RoxyBasicNeedBot. All Rights Reserved.
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ