Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +6 -1
Dockerfile
CHANGED
@@ -15,4 +15,9 @@ WORKDIR /app
|
|
15 |
|
16 |
# requirements.txt をコンテナ内にコピーして、必要なパッケージをインストール
|
17 |
COPY requirements.txt /app/
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
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"]
|