ium_495719/Dockerfile

18 lines
378 B
Docker
Raw Permalink 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 && \
2024-06-12 14:01:31 +02:00
pip3 install pandas scikit-learn tensorflow sacred pymongo --break-system-packages GitPython
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-27 18:20:17 +02:00
COPY data_processing.py .
COPY create_model.py .
COPY helper.py .
2024-05-15 00:22:12 +02:00
COPY evaluate.py .
2024-04-27 18:20:17 +02:00
2024-04-02 19:46:56 +02:00
WORKDIR .