ium_464906/Dockerfile

15 lines
333 B
Docker
Raw Normal View History

2024-04-02 20:34:21 +02:00
FROM ubuntu:latest
RUN apt-get update && apt-get install -y python3-pip unzip coreutils
RUN pip install --user kaggle pandas scikit-learn tensorflow
2024-04-02 20:34:21 +02:00
WORKDIR /app
COPY ./data_processing.sh ./
2024-04-30 10:49:32 +02:00
COPY ./OrangeQualityData.csv ./
COPY ./orange_quality_model_tf.h5 ./
COPY ./predictions_tf.json ./
2024-04-30 10:49:32 +02:00
CMD ["python3", "data_processing.sh"]