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