IUM_s464980/MLFLOW/Dockerfile

15 lines
302 B
Docker
Raw Permalink Normal View History

2024-05-15 00:30:21 +02:00
FROM python:3.11
RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y build-essential
RUN python -m pip install --upgrade pip
COPY ../requirements.txt /tmp
RUN python -m pip install -r /tmp/requirements.txt
WORKDIR ./app
COPY train.py ./
2024-05-15 00:32:40 +02:00
COPY df_train.csv ./
COPY df_test.csv ./
2024-05-15 00:30:21 +02:00
CMD bash