Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
# ✅ Temel Python imajı
|
2 |
FROM python:3.10-slim
|
3 |
|
4 |
-
# ✅ Sistem bağımlılıkları
|
5 |
-
RUN apt-get update && apt-get install -y gcc g++ make
|
6 |
|
7 |
# ✅ Çalışma dizini ve izinler
|
8 |
WORKDIR /app
|
|
|
1 |
# ✅ Temel Python imajı
|
2 |
FROM python:3.10-slim
|
3 |
|
4 |
+
# ✅ Sistem bağımlılıkları (git dahil!)
|
5 |
+
RUN apt-get update && apt-get install -y gcc g++ make git
|
6 |
|
7 |
# ✅ Çalışma dizini ve izinler
|
8 |
WORKDIR /app
|