soiz1 commited on
Commit
b9ab69f
·
verified ·
1 Parent(s): c80a661

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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