18 lines
341 B
Docker
18 lines
341 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y python3-pip && \
|
|
pip3 install kaggle pandas scikit-learn tensorflow
|
|
|
|
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 predict_price.py .
|
|
|
|
WORKDIR . |