Files
islamicconfig/dockerfile
mstfyldz 18a96a0154 docker
2026-03-06 20:05:14 +03:00

14 lines
349 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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"]