Kaynağa Gözat

Fix Streamlit Dockerfile to include all dependencies

lanfr144 2 hafta önce
ebeveyn
işleme
cf2ecf83df
1 değiştirilmiş dosya ile 1 ekleme ve 3 silme
  1. 1 3
      docker/app/Dockerfile

+ 1 - 3
docker/app/Dockerfile

@@ -13,9 +13,7 @@ COPY requirements.txt ./
 RUN pip install --no-cache-dir -r requirements.txt
 
 # Copy application code
-COPY app.py ./
-COPY myloginpath.py ./
-
+COPY *.py ./
 
 EXPOSE 8501