14 lines
183 B
Docker
14 lines
183 B
Docker
FROM ubuntu:20.04
|
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install kaggle
|
|
RUN pip install sklearn
|
|
RUN pip install pandas
|
|
RUN pip install seaborn
|
|
RUN pip install matplotlib
|
|
|
|
CMD ["run.sh"]
|