Files
islamicconfig/dockerfile
mstfyldz ebf42796e3 docker
2026-03-06 20:08:47 +03:00

14 lines
350 B
Plaintext
Raw Permalink 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 islamic.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"]