Upload files to ''
This commit is contained in:
parent
c1290e5421
commit
7617e7a515
20
Dockerfile
Normal file
20
Dockerfile
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
FROM ubuntu:latest
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y git python3 python3-pip curl \
|
||||||
|
&& curl -O https://bootstrap.pypa.io/get-pip.py \
|
||||||
|
&& python3 get-pip.py --user \
|
||||||
|
&& rm get-pip.py \
|
||||||
|
&& pip3 install --user kaggle \
|
||||||
|
&& pip3 install --user pandas \
|
||||||
|
&& pip3 install --user plotly \
|
||||||
|
&& pip3 install --user seaborn \
|
||||||
|
&& pip3 install --user scikit-learn
|
||||||
|
|
||||||
|
ENV PATH="/root/.local/bin:$PATH"
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY . /app
|
||||||
|
|
Loading…
Reference in New Issue
Block a user