2023-04-18 21:26:17 +02:00
|
|
|
FROM continuumio/anaconda3:latest
|
|
|
|
|
|
|
|
WORKDIR /script
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y
|
|
|
|
|
2023-04-18 21:47:27 +02:00
|
|
|
COPY iumz_434686 .
|
|
|
|
|
|
|
|
RUN cd ./
|
|
|
|
|
2023-04-18 21:26:17 +02:00
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
2023-04-18 21:47:27 +02:00
|
|
|
|
2023-04-18 21:26:17 +02:00
|
|
|
|
|
|
|
CMD python ./create-dataset.py
|