pmrony commited on
Commit
a54ee54
·
verified ·
1 Parent(s): c3673c2

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ # প্রয়োজনীয় টুলস ইনস্টল
4
+ RUN apt-get update && apt-get install -y build-essential libpq-dev && rm -rf /var/lib/apt/lists/*
5
+
6
+ WORKDIR /app
7
+
8
+ COPY . .
9
+
10
+ # লাইব্রেরি ইনস্টল
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
+
13
+ # বট স্টার্ট করা
14
+ CMD ["python", "main.py"]