Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -3,7 +3,8 @@ FROM python:3.11.7-slim
|
|
| 3 |
|
| 4 |
# 作業ディレクトリを設定
|
| 5 |
WORKDIR /code
|
| 6 |
-
|
|
|
|
| 7 |
# requirements.txtをコンテナにコピー
|
| 8 |
COPY ./requirements.txt /code/requirements.txt
|
| 9 |
|
|
|
|
| 3 |
|
| 4 |
# 作業ディレクトリを設定
|
| 5 |
WORKDIR /code
|
| 6 |
+
ARG ghKey
|
| 7 |
+
RUN git clone https://$ghKey@github.com/OzoneAsai/flashcards.git ./data
|
| 8 |
# requirements.txtをコンテナにコピー
|
| 9 |
COPY ./requirements.txt /code/requirements.txt
|
| 10 |
|