Spaces:
Sleeping
Sleeping
Commit ·
6ad790f
1
Parent(s): b682099
Install python
Browse files- Dockerfile +7 -0
Dockerfile
CHANGED
|
@@ -9,6 +9,13 @@ ENV LIVEBOOK_APPS_PATH_WARMUP "manual"
|
|
| 9 |
ENV LIVEBOOK_DATA_PATH "/data"
|
| 10 |
ENV LIVEBOOK_PORT 7860
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
RUN pip3 install nltk
|
| 13 |
|
| 14 |
EXPOSE 7860
|
|
|
|
| 9 |
ENV LIVEBOOK_DATA_PATH "/data"
|
| 10 |
ENV LIVEBOOK_PORT 7860
|
| 11 |
|
| 12 |
+
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 13 |
+
python3.5 \
|
| 14 |
+
python3-pip \
|
| 15 |
+
&& \
|
| 16 |
+
apt-get clean && \
|
| 17 |
+
rm -rf /var/lib/apt/lists/*
|
| 18 |
+
|
| 19 |
RUN pip3 install nltk
|
| 20 |
|
| 21 |
EXPOSE 7860
|