rein0421 commited on
Commit
ea2da5f
·
verified ·
1 Parent(s): 37782cb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -15,4 +15,8 @@ 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
+ RUN python3 -m pip install --no-cache-dir -r requirements.txt
19
+
20
+ COPY . .
21
+
22
+ CMD ["python3", "app.py"]