Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -7,6 +7,10 @@ WORKDIR /app
|
|
7 |
# ホストのファイルをコンテナにコピー
|
8 |
COPY . .
|
9 |
RUN apt-get update && apt-get install -y python3 python3-pip
|
|
|
|
|
|
|
|
|
10 |
ARG github_token
|
11 |
# translations ディレクトリを作成し、権限を設定
|
12 |
RUN mkdir -p /app/translations && chmod -R 777 /app/translations
|
|
|
7 |
# ホストのファイルをコンテナにコピー
|
8 |
COPY . .
|
9 |
RUN apt-get update && apt-get install -y python3 python3-pip
|
10 |
+
RUN apt-get update && \
|
11 |
+
apt-get install -y git-lfs && \
|
12 |
+
git lfs install
|
13 |
+
|
14 |
ARG github_token
|
15 |
# translations ディレクトリを作成し、権限を設定
|
16 |
RUN mkdir -p /app/translations && chmod -R 777 /app/translations
|