15 lines
226 B
Docker
15 lines
226 B
Docker
FROM python:latest
|
|
|
|
WORKDIR /script
|
|
|
|
RUN apt-get update && apt-get install -y
|
|
|
|
RUN pip install numpy
|
|
RUN pip install scikit-learn
|
|
RUN pip install pandas
|
|
|
|
RUN echo $(ls -a)
|
|
|
|
COPY . .
|
|
|
|
CMD python ./ium_z434686/create-dataset.py |