tregu0458 commited on
Commit
9d937a6
1 Parent(s): 90a4f61

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -14,7 +14,7 @@ COPY --chown=appuser:appuser requirements.txt .
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
  # アプリケーションファイルのコピー
17
- COPY --chown=appuser:appuser pegasus_web_crawler.py .
18
 
19
  # 出力ディレクトリの作成
20
  RUN mkdir -p /app/output && chown appuser:appuser /app/output
@@ -26,4 +26,4 @@ USER appuser
26
  EXPOSE 7860
27
 
28
  # Gradioの起動コマンド
29
- CMD ["python", "pegasus_web_crawler.py"]
 
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
  # アプリケーションファイルのコピー
17
+ COPY --chown=appuser:appuser app.py .
18
 
19
  # 出力ディレクトリの作成
20
  RUN mkdir -p /app/output && chown appuser:appuser /app/output
 
26
  EXPOSE 7860
27
 
28
  # Gradioの起動コマンド
29
+ CMD ["python", "app.py"]