rein0421 commited on
Commit
c591367
·
verified ·
1 Parent(s): 8745955

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -15,4 +15,9 @@ WORKDIR /app
15
 
16
  # requirements.txt をコンテナ内にコピーして、必要なパッケージをインストール
17
  COPY requirements.txt /app/
18
- RUN pip install --no-cache-dir -r requirements.txt
 
 
 
 
 
 
15
 
16
  # requirements.txt をコンテナ内にコピーして、必要なパッケージをインストール
17
  COPY requirements.txt /app/
18
+
19
+ RUN python3 -m pip install --no-cache-dir -r requirements.txt
20
+
21
+ COPY . .
22
+
23
+ CMD ["python3", "app.py"]