This commit is contained in:
PawelDopierala 2024-04-02 23:12:21 +02:00
parent f650cc1081
commit e77989bf86
1 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,12 @@ RUN apt-get update && \
apt-get install -y python3-pip && \
pip3 install kaggle pandas scikit-learn
RUN useradd -ms /bin/bash jenkins
RUN mkdir -p /.kaggle && chown -R jenkins /.kaggle
USER jenkins
COPY data_processing.sh .
WORKDIR .