ium_s487178/dockerfile3

22 lines
564 B
Plaintext
Raw Normal View History

2023-04-05 19:36:18 +02:00
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 \
&& pip install --user kaggle \
&& pip install --user pandas \
&& pip install --user plotly \
2023-04-05 20:11:52 +02:00
&& pip install --user seaborn \
2023-04-05 22:00:44 +02:00
&& pip install --user scikit-learn
2023-04-05 19:36:18 +02:00
ENV PATH="/root/.local/bin:$PATH"
WORKDIR /app
2023-04-05 22:36:12 +02:00
COPY . /app
#RUN git clone https://git.wmi.amu.edu.pl/s487178/ium_s487178.git /app
2023-04-05 19:36:18 +02:00
2023-04-05 20:11:52 +02:00
#CMD ["python3", "body_performance.py"]