Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -28,6 +28,8 @@ RUN wget -nc https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/r
|
|
28 |
COPY requirements.txt .
|
29 |
RUN pip install --upgrade pip && pip install -r requirements.txt
|
30 |
|
|
|
|
|
31 |
# アプリケーションコードをコピー
|
32 |
COPY . .
|
33 |
|
|
|
28 |
COPY requirements.txt .
|
29 |
RUN pip install --upgrade pip && pip install -r requirements.txt
|
30 |
|
31 |
+
RUN mkdir -p /app/output && chmod 777 /app/output
|
32 |
+
|
33 |
# アプリケーションコードをコピー
|
34 |
COPY . .
|
35 |
|