ium_495719/Dockerfile
PawelDopierala 52ede7236e Do sacred
2024-06-12 12:01:14 +02:00

18 lines
373 B
Docker

FROM ubuntu:latest
RUN apt-get update && \
apt-get install -y python3-pip && \
pip3 install kaggle pandas scikit-learn tensorflow matplotlib mlflow git sacred pymongo
RUN useradd -ms /bin/bash jenkins
RUN mkdir -p /.kaggle && chown -R jenkins /.kaggle
USER jenkins
COPY data_processing.py .
COPY create_model.py .
COPY helper.py .
COPY evaluate.py .
WORKDIR .