File size: 529 Bytes
1cb214e
c4e055b
 
 
 
 
 
 
 
 
 
 
1cb214e
 
9e5ceac
c4e055b
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM mcr.microsoft.com/playwright/python:v1.40.0-jammy

# 作業ディレクトリを設定
WORKDIR /app

# Python依存関係をインストール
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

# アプリケーションファイルをコピー
COPY . .

# 非rootユーザーを作成(playwright imageには既にplaywrightユーザーが存在)
USER pwuser

# ポートを公開
EXPOSE 7860

# アプリケーションを起動
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]