Syoy commited on
Commit
0628efe
1 Parent(s): 32d0c89

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -0
Dockerfile ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /code
4
+ ENV HOME=/code
5
+
6
+ RUN apt install curl
7
+ RUN pip install pip -U
8
+ RUN pip install "renumics-spotlight==1.3.0"
9
+
10
+ RUN pip install pyarrow datasets
11
+
12
+ COPY . .
13
+ RUN mkdir -p /code/.cache
14
+ RUN chmod -R 777 /code
15
+
16
+ CMD ["python", "run.py"]