14 lines
349 B
Plaintext
14 lines
349 B
Plaintext
# En küçük Python imajını kullanıyoruz
|
||
FROM python:3.11-alpine
|
||
|
||
# Çalışma dizinini ayarla
|
||
WORKDIR /app
|
||
|
||
# JSON dosyasını ve Python sunucusu betiğini kopyala
|
||
COPY config.json server.py ./
|
||
|
||
# 80 portunu dışarı aç (Coolify varsayılanı)
|
||
EXPOSE 80
|
||
|
||
# Kendi yazdığımız hafif Python sunucusunu çalıştır
|
||
CMD ["python", "server.py"] |