ium_495719/Dockerfile

15 lines
266 B
Docker
Raw Normal View History

2024-04-02 19:46:56 +02:00
FROM ubuntu:latest
RUN apt-get update && \
2024-04-02 22:29:35 +02:00
apt-get install -y python3-pip && \
pip3 install kaggle pandas scikit-learn
2024-04-02 19:46:56 +02:00
2024-04-02 23:12:21 +02:00
RUN useradd -ms /bin/bash jenkins
RUN mkdir -p /.kaggle && chown -R jenkins /.kaggle
USER jenkins
2024-04-02 19:46:56 +02:00
COPY data_processing.sh .
WORKDIR .