Update Dockerfile
Browse files- Dockerfile +1 -7
Dockerfile
CHANGED
|
@@ -25,12 +25,6 @@ RUN mkdir -p /app/output && chmod 777 /app/output
|
|
| 25 |
|
| 26 |
# アプリケーションコードをコピー
|
| 27 |
COPY . .
|
| 28 |
-
|
| 29 |
-
RUN wget -nc https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-x4v3.pth && \
|
| 30 |
-
wget -nc https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.2.pth && \
|
| 31 |
-
wget -nc https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth && \
|
| 32 |
-
wget -nc https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.4.pth && \
|
| 33 |
-
wget -nc https://github.com/TencentARC/GFPGAN/releases/download/v1.3.4/RestoreFormer.pth && \
|
| 34 |
-
wget -nc https://github.com/TencentARC/GFPGAN/releases/download/v1.3.4/CodeFormer.pth
|
| 35 |
# アプリの実行
|
| 36 |
CMD ["python", "app.py"]
|
|
|
|
| 25 |
|
| 26 |
# アプリケーションコードをコピー
|
| 27 |
COPY . .
|
| 28 |
+
RUN python ins.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
# アプリの実行
|
| 30 |
CMD ["python", "app.py"]
|