update dockerfile

This commit is contained in:
Yevhenii Poliakov 2023-05-12 20:46:44 +02:00
parent c38a3522d9
commit ab0ebd918d

View File

@ -10,12 +10,8 @@ RUN pip3 install --user kaggle pandas
COPY . /app COPY . /app
WORKDIR /app WORKDIR /app
RUN apt install python3.10-venv -y
RUN python3 -m venv docker_ium
CMD source docker_ium/bin/activate
RUN pip3 install pandas RUN pip3 install pandas
RUN pip3 install -U scikit-learn RUN pip3 install -U scikit-learn
RUN pip install tensorflow==2.12.* RUN pip install tensorflow==2.12.*
CMD deactivate