ium_z487175/dockerfile

30 lines
743 B
Plaintext
Raw Normal View History

FROM ubuntu:latest
2023-04-16 15:49:14 +02:00
2023-06-06 22:24:23 +02:00
RUN apt update && apt upgrade -y \
2023-07-05 21:53:24 +02:00
&& apt install -y python3.10 python3-pip curl
RUN pip install --upgrade pip
RUN pip install --user kaggle \
2023-04-16 15:49:14 +02:00
&& pip install --user pandas \
&& pip install --user tensorflow==2.12.0 \
2023-04-16 15:49:14 +02:00
&& pip install --user scikit-learn \
2023-06-06 22:24:23 +02:00
&& pip install --user matplotlib \
&& pip install --user keras \
&& pip install --user numpy \
2023-06-09 14:17:18 +02:00
&& pip install --user opencv-python \
&& pip install --user sacred \
&& pip install --user pymongo
2023-04-16 15:49:14 +02:00
2023-07-05 21:53:24 +02:00
#RUN echo 'export PATH="/root/.local/bin:$PATH"' >> ~/.bashrc
ENV PATH="/root/.local/bin:${PATH}"
2023-04-16 15:49:14 +02:00
RUN mkdir /app
WORKDIR /app
2023-06-06 22:24:23 +02:00
COPY . /app/
2023-07-05 21:53:24 +02:00
# uruchomienie skryptow
# RUN python3.10 ./DL-model.py
# CMD python3.10 ./DL-model.py