Spaces:
Runtime error
Runtime error
xp commited on
Commit ·
468b8d4
1
Parent(s): 6039b52
update the docker file
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
|
@@ -7,8 +7,13 @@ RUN apt-get update && apt-get install -y \
|
|
| 7 |
curl \
|
| 8 |
software-properties-common \
|
| 9 |
git \
|
|
|
|
|
|
|
|
|
|
| 10 |
&& rm -rf /var/lib/apt/lists/*
|
| 11 |
|
|
|
|
|
|
|
| 12 |
COPY requirements.txt ./
|
| 13 |
COPY src/ ./src/
|
| 14 |
|
|
|
|
| 7 |
curl \
|
| 8 |
software-properties-common \
|
| 9 |
git \
|
| 10 |
+
libxrender1 \
|
| 11 |
+
libxext6 \
|
| 12 |
+
libsm6 \
|
| 13 |
&& rm -rf /var/lib/apt/lists/*
|
| 14 |
|
| 15 |
+
ENV MPLCONFIGDIR=/tmp/mplconfig
|
| 16 |
+
|
| 17 |
COPY requirements.txt ./
|
| 18 |
COPY src/ ./src/
|
| 19 |
|