Spaces:
Runtime error
Runtime error
File size: 545 Bytes
e103758 c204b72 7f39dd5 c204b72 8facdeb 7f39dd5 c204b72 8facdeb a3c6cfc 7f39dd5 861bb17 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
FROM ubuntu:22.04
# 必要なパッケージをインストール
RUN apt-get update && apt-get install -y \
git wget python3 python3-pip && \
apt-get clean && rm -rf /var/lib/apt/lists/*
# Pythonのデフォルト実行ファイルをpython3に変更
RUN ln -s /usr/bin/python3 /usr/bin/python
# リポジトリをクローン
WORKDIR /app
# app.py をコンテナにコピー
COPY . .
# WebUIの起動(app.pyを実行)
WORKDIR /app/stable-diffusion-webui-forge
CMD ["python3", "launch.py", "--share", "--disable-torch-cuda"]
|