Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM ubuntu:latest
|
2 |
+
|
3 |
+
RUN apt-get update
|
4 |
+
RUN apt-get install openslide-tools
|
5 |
+
|
6 |
+
COPY . .
|
7 |
+
|
8 |
+
RUN pip install -r requirements.txt
|