CoolFace
Apppublic

Omeriskoo/internal-web-system2

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM eclipse-temurin:21-jdk-jammy2 3# Sistem araçları ve Python (Web sinyali için)4RUN apt-get update && apt-get install -y \5    curl wget python3 procps sudo gnupg \6    && rm -rf /var/lib/apt/lists/*7 8WORKDIR /app9COPY . .10 11# Yetki mühürleme12RUN chmod +x start.sh13 14# Hugging Face'in "kalp atışı" portu15EXPOSE 786016 17# Başlatma komutu18ENTRYPOINT ["/bin/bash", "./start.sh"]19