Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +0 -2
Dockerfile
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
FROM python:3.9-slim
|
2 |
|
3 |
-
# Install system dependencies
|
4 |
RUN apt-get update && apt-get install -y \
|
5 |
libgl1 \
|
6 |
libglib2.0-0 \
|
@@ -9,7 +8,6 @@ RUN apt-get update && apt-get install -y \
|
|
9 |
|
10 |
WORKDIR /app
|
11 |
|
12 |
-
# Download pretrained model
|
13 |
RUN mkdir -p /app/weights && \
|
14 |
wget https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-x4v3.pth -P /app/weights
|
15 |
|
|
|
1 |
FROM python:3.9-slim
|
2 |
|
|
|
3 |
RUN apt-get update && apt-get install -y \
|
4 |
libgl1 \
|
5 |
libglib2.0-0 \
|
|
|
8 |
|
9 |
WORKDIR /app
|
10 |
|
|
|
11 |
RUN mkdir -p /app/weights && \
|
12 |
wget https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-x4v3.pth -P /app/weights
|
13 |
|