-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
28 lines (21 loc) · 711 Bytes
/
Copy pathDockerfile
File metadata and controls
28 lines (21 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Python resmi imajını temel al
FROM python:3.11-slim
# Çalışma dizinini ayarla
WORKDIR /app
# Sistem bağımlılıklarını yükle
RUN apt-get update && apt-get install -y \
build-essential \
curl \
software-properties-common \
&& rm -rf /var/lib/apt/lists/*
# Uygulama bağımlılıklarını kopyala ve yükle
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Uygulama kodlarını kopyala
COPY . .
# Streamlit için gerekli port
EXPOSE 8501
# Sağlık kontrolü
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
# Streamlit uygulamasını başlat
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]