OzoneAsai commited on
Commit
9cfcd01
·
verified ·
1 Parent(s): 7bd58d8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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