File size: 541 Bytes
92e6506
 
 
 
0bf1a40
33e21cf
0bf1a40
92e6506
 
 
 
b7e011a
92e6506
 
33e21cf
92e6506
 
 
 
ffa84f1
92e6506
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM python:3.9

WORKDIR /code
ENV HOME=/code

COPY ./renumics_spotlight-1.4.0.post18+cd16f7b-py3-none-any.whl /code/renumics_spotlight-1.4.0.post18+cd16f7b-py3-none-any.whl

# RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

RUN apt install curl
RUN pip install pip -U
RUN pip install pydantic==1.10.8


RUN pip install renumics_spotlight-1.4.0.post18+cd16f7b-py3-none-any.whl




RUN pip install pyarrow datasets 

COPY . .
RUN mkdir -p /code/.cache
RUN chmod -R 777 /code
RUN python prepare.py
CMD ["python", "run.py"]