yeq6x commited on
Commit
e1bcc74
·
1 Parent(s): f1dc7f8
Files changed (3) hide show
  1. Dockerfile +4 -12
  2. app.py +3 -5
  3. requirements.txt +1 -2
Dockerfile CHANGED
@@ -1,25 +1,17 @@
1
- # ベースイメージとしてCUDA対応のUbuntuを使用
2
- FROM nvidia/cuda:12.2.2-base-ubuntu22.04
3
 
4
  # 作業ディレクトリを設定
5
  WORKDIR /app
6
 
7
- # 必要なパッケージをインストール
8
- RUN apt-get update && apt-get install -y --no-install-recommends \
9
- python3-pip \
10
- python3-dev \
11
- && apt-get clean \
12
- && rm -rf /var/lib/apt/lists/*
13
-
14
- # Pythonのシンボリックリンクを作成
15
- RUN ln -s /usr/bin/python3 /usr/bin/python
16
-
17
  # 必要なPythonライブラリをインストールするための依存ファイルをコピー
18
  COPY requirements.txt /app/requirements.txt
19
 
20
  # 必要なPythonパッケージをインストール
21
  RUN pip install --no-cache-dir -r requirements.txt
22
 
 
 
23
  # アプリケーションコードをコンテナにコピー
24
  COPY . /app
25
 
 
1
+ # ベースイメージとしてPython 3.9を使用
2
+ FROM python:3.9-slim
3
 
4
  # 作業ディレクトリを設定
5
  WORKDIR /app
6
 
 
 
 
 
 
 
 
 
 
 
7
  # 必要なPythonライブラリをインストールするための依存ファイルをコピー
8
  COPY requirements.txt /app/requirements.txt
9
 
10
  # 必要なPythonパッケージをインストール
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+ RUN nvidia-smi
14
+
15
  # アプリケーションコードをコンテナにコピー
16
  COPY . /app
17
 
app.py CHANGED
@@ -9,10 +9,9 @@ from datetime import datetime
9
  from pytz import timezone
10
  from scripts.survey import handle_form_submission, handle_visit_choice, handle_proceed, localize, script, generate_image, send_feedback
11
 
12
- def initialize_models():
13
- # 初期化
14
- initialize(_use_local=False, use_gpu=True, use_dotenv=True)
15
- init_model(use_local=False)
16
 
17
  def process_image(input_image, mode, weight1=None, weight2=None):
18
  tokyo_time = datetime.now(timezone('Asia/Tokyo')).strftime("%Y-%m-%d %H:%M:%S") # 日本時間のタイムスタンプ
@@ -211,5 +210,4 @@ with gr.Blocks() as demo:
211
  # JavaScriptの読み込み
212
  demo.load(js=script)
213
 
214
- initialize_models()
215
  demo.launch()
 
9
  from pytz import timezone
10
  from scripts.survey import handle_form_submission, handle_visit_choice, handle_proceed, localize, script, generate_image, send_feedback
11
 
12
+ # 初期化
13
+ initialize(_use_local=False, use_gpu=True, use_dotenv=True)
14
+ init_model(use_local=False)
 
15
 
16
  def process_image(input_image, mode, weight1=None, weight2=None):
17
  tokyo_time = datetime.now(timezone('Asia/Tokyo')).strftime("%Y-%m-%d %H:%M:%S") # 日本時間のタイムスタンプ
 
210
  # JavaScriptの読み込み
211
  demo.load(js=script)
212
 
 
213
  demo.launch()
requirements.txt CHANGED
@@ -22,5 +22,4 @@ python-dotenv
22
  peft==0.11.1
23
  flask_limiter==3.7.0
24
  gevent==24.2.1
25
- gevent-websocket==0.10.1
26
- firebase-admin
 
22
  peft==0.11.1
23
  flask_limiter==3.7.0
24
  gevent==24.2.1
25
+ gevent-websocket==0.10.1