ium_464906/Dockerfile
2024-05-26 13:59:09 +02:00

20 lines
352 B
Docker

FROM ubuntu:latest
RUN apt-get update && apt-get install -y \
python3-pip \
unzip \
coreutils
RUN pip3 install kaggle pandas scikit-learn tensorflow
WORKDIR /app
COPY ./data_processing.sh ./
COPY ./model.py ./
COPY ./OrangeQualityData.csv ./
COPY ./requirements.txt ./
RUN pip3 install -r requirements.txt
CMD ["python3", "model.py"]