dunbot / Dockerfile
Duongkum999's picture
Update Dockerfile
1c95fbf verified
raw
history blame
504 Bytes
# Sử dụng Node.js 18 làm base image
FROM node:18
# Cài đặt git
RUN apt-get update && apt-get install -y git
# Tạo thư mục làm việc trong container
WORKDIR /app
# Clone repository từ GitHub
RUN git clone https://github.com/GiaKhang1810/mira-bot-v1.git .
# Cài đặt các phụ thuộc
RUN npm install
# Cấp quyền đọc/ghi cho thư mục
RUN chmod -R 755 /app
# Expose port mà ứng dụng sẽ chạy
EXPOSE 25645
# Lệnh để chạy ứng dụng
CMD ["npm", "start"]