浏览代码

Fix Streamlit Dockerfile to include all dependencies

lanfr144 2 周之前
父节点
当前提交
cf2ecf83df
共有 1 个文件被更改,包括 1 次插入3 次删除
  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