38 lines
909 B
Docker
38 lines
909 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y python3.10 python3-pip && \
|
|
pip3 install --upgrade pip
|
|
|
|
RUN pip3 install kaggle
|
|
RUN pip3 install pandas
|
|
RUN pip3 install scikit-learn
|
|
RUN pip3 install tensorflow==2.12.*
|
|
RUN pip3 install torch torchvision
|
|
#RUN pip install torch==1.8.0+cpu torchvision==0.9.0+cpu torchaudio==0.8.0 -f https://download.pytorch.org/whl/torch_stable.html
|
|
RUN pip3 install pickle5
|
|
RUN pip3 install sacred
|
|
RUN pip3 install pymongo
|
|
|
|
RUN pip3 install dvc[ssh] paramiko
|
|
|
|
RUN apt install -y sshpass openssh-client git
|
|
|
|
#RUN apt install python3.10-venv -y
|
|
#RUN python3 -m venv docker_ium
|
|
|
|
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
#RUN python3 -m pip install pandas
|
|
|
|
#RUN pip3 install tensorflow==2.12.*
|
|
|
|
RUN chmod +r ./25k_IMDb_movie_Dataset.csv
|
|
RUN chmod +x ./script5_3.py
|
|
RUN chmod +x ./better_preprocess.py
|
|
|
|
|
|
RUN useradd -r -u 111 jenkins |