2024-04-02 23:06:26 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY . /app
|
|
|
|
|
|
|
|
RUN apt update
|
|
|
|
|
|
|
|
RUN apt install python3 python3-pip -y
|
|
|
|
|
2024-04-14 22:57:39 +02:00
|
|
|
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 lightning
|
2024-04-02 23:06:26 +02:00
|
|
|
|
|
|
|
RUN pip3 install --no-cache-dir Pillow==10.2.0
|
|
|
|
|
|
|
|
EXPOSE 80
|
|
|
|
|
2024-04-02 23:46:34 +02:00
|
|
|
CMD ["python", "main.py"]
|