File size: 638 Bytes
9249ee8
ae99f82
2234b4d
9249ee8
 
 
 
 
 
 
 
 
bd1f491
9249ee8
 
ae99f82
001773d
 
ae99f82
61d54a8
ae99f82
fe366d4
ae99f82
61d54a8
 
 
ae99f82
 
9249ee8
ae99f82
 
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
FROM node:lts-buster

# تثبيت المتطلبات الأساسية
RUN apt-get update && \
    apt-get install -y \
    git \
    ffmpeg \
    imagemagick \
    webp && \
    apt-get upgrade -y && \
    rm -rf /var/lib/apt/lists/*

# إنشاء   مجلد العمل
WORKDIR /app

# استنساخ المشروع
RUN git clone https://github.com/omarvip212/bot0.git .

# تثبيت الاعتماديات
COPY package*.json ./
RUN npm install --force
RUN npm install [email protected]

# نسخ باقي الملفات
COPY . .

# تعيين الصلاحيات
RUN chmod -R 777 /app

# تشغيل البوت
CMD ["node", "index.js"]