15 lines
210 B
Docker
15 lines
210 B
Docker
FROM continuumio/anaconda3:latest
|
|
|
|
WORKDIR /script
|
|
|
|
RUN apt-get update && apt-get install -y
|
|
|
|
COPY iumz_434686 .
|
|
|
|
RUN cd ./
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
CMD python ./create-dataset.py |