Compare commits

...

2 Commits

Author SHA1 Message Date
Karol Cyganik
162c6a9dac Merge branch 'main' of https://git.wmi.amu.edu.pl/s495715/iumKC 2024-04-02 23:06:30 +02:00
Karol Cyganik
5107ac4825 add dockerfile 2024-04-02 23:06:26 +02:00
2 changed files with 17 additions and 1 deletions

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM ubuntu:latest
WORKDIR /app
COPY . /app
RUN apt update
RUN apt install python3 python3-pip -y
RUN pip3 install --no-cache-dir kaggle==1.6.6 matplotlib==3.6.3 scikit-learn==1.2.2 torch==2.0.0 torchvision==0.15.1
RUN pip3 install --no-cache-dir Pillow==10.2.0
EXPOSE 80
CMD ["python", "your_script_name.py"]

View File

@ -1,6 +1,5 @@
kaggle==1.6.6
matplotlib==3.6.3
Pillow==9.3.0
Pillow==10.2.0
scikit_learn==1.2.2
torch==2.0.0+cu117