buletomato25 commited on
Commit
2bf77cf
·
2 Parent(s): 1dfab95 c591367

Merge branch 'main' into suwabe/docker

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"]