ium_s487178/dockerfile2

17 lines
408 B
Plaintext
Raw Normal View History

2023-04-04 12:19:34 +02:00
FROM ubuntu:latest
RUN apt-get update \
&& apt-get install -y python3 python3-pip curl \
&& curl -O https://bootstrap.pypa.io/get-pip.py \
&& python3 get-pip.py --user \
&& rm get-pip.py \
&& pip install --user kaggle \
&& pip install --user pandas \
&& pip install --user plotly \
2023-04-05 14:40:41 +02:00
&& pip install --user seaborn \
2023-04-04 12:19:34 +02:00
ENV PATH="/root/.local/bin:$PATH"
WORKDIR /app
COPY . /app