Sidoineko commited on
Commit
ce7719a
·
1 Parent(s): 65f745a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -7,11 +7,16 @@ RUN apt-get update && \
7
  apt-get install -y --no-install-recommends procps && \
8
  rm -rf /var/lib/apt/lists/*
9
 
 
 
 
10
  # Copie des fichiers
11
  COPY requirements.txt .
12
  RUN pip install --no-cache-dir -r requirements.txt
13
 
14
- COPY . .
 
 
15
 
16
  # Définir les variables d'environnement
17
  ENV STREAMLIT_SERVER_PORT=8501
 
7
  apt-get install -y --no-install-recommends procps && \
8
  rm -rf /var/lib/apt/lists/*
9
 
10
+ # Création du répertoire src
11
+ RUN mkdir -p /app/src
12
+
13
  # Copie des fichiers
14
  COPY requirements.txt .
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
+ # Copie du code source
18
+ COPY src/ /app/src/
19
+ COPY start.sh /app/
20
 
21
  # Définir les variables d'environnement
22
  ENV STREAMLIT_SERVER_PORT=8501