Spaces:
Sleeping
Sleeping
Gosse Minnema
commited on
Commit
•
159a00a
1
Parent(s):
ee23fc5
Install notebook and checklist before everything else
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
@@ -1,5 +1,10 @@
|
|
1 |
FROM python:3.9
|
2 |
WORKDIR /app
|
3 |
ADD . /app
|
|
|
|
|
|
|
|
|
|
|
4 |
RUN pip install -r requirements_from_rug_demo_version.txt
|
5 |
CMD ["python", "-m", "sociolome.lome_webserver", "0.0.0.0"]
|
|
|
1 |
FROM python:3.9
|
2 |
WORKDIR /app
|
3 |
ADD . /app
|
4 |
+
|
5 |
+
# solves this issue https://github.com/marcotcr/checklist/issues/144
|
6 |
+
RUN pip install "notebook==6.0.1"
|
7 |
+
RUN pip install "checklist==0.0.11"
|
8 |
+
|
9 |
RUN pip install -r requirements_from_rug_demo_version.txt
|
10 |
CMD ["python", "-m", "sociolome.lome_webserver", "0.0.0.0"]
|