Spaces:
Build error
Build error
File size: 589 Bytes
52b2e5f 0dc3843 b77b86b 0dc3843 b77b86b 0dc3843 b77b86b 0dc3843 52b2e5f b77b86b 0dc3843 52b2e5f 0dc3843 52b2e5f 0dc3843 52b2e5f 0dc3843 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | FROM python:3.9-slim
# システムパッケージの更新とインストール
RUN apt-get update && apt-get install -y \
build-essential \
curl \
software-properties-common \
git \
&& rm -rf /var/lib/apt/lists/*
# 作業ディレクトリの設定
WORKDIR /app
# Pythonの依存関係をインストール
COPY requirements_hf.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# アプリケーションファイルをコピー
COPY . .
# ポートの公開
EXPOSE 7860
# アプリケーションの起動
CMD ["python", "app_docker.py"]
|