ium_464906/Dockerfile

20 lines
352 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
2024-04-02 20:34:21 +02:00
RUN pip3 install kaggle pandas scikit-learn tensorflow
2024-04-02 20:34:21 +02:00
WORKDIR /app
COPY ./data_processing.sh ./
COPY ./model.py ./
2024-04-30 10:49:32 +02:00
COPY ./OrangeQualityData.csv ./
COPY ./requirements.txt ./
2024-04-30 10:49:32 +02:00
RUN pip3 install -r requirements.txt
CMD ["python3", "model.py"]