2024-03-30 13:04:13 +01:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -y \
|
2024-05-09 01:56:58 +02:00
|
|
|
python3 \
|
2024-03-30 13:04:13 +01:00
|
|
|
python3-pip \
|
|
|
|
wget \
|
|
|
|
unzip \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2024-05-09 02:20:22 +02:00
|
|
|
RUN pip3 install pandas scikit-learn requests numpy matplotlib
|
2024-03-30 13:04:13 +01:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2024-04-14 21:59:34 +02:00
|
|
|
COPY use_model.py /app/
|
2024-03-30 13:04:13 +01:00
|
|
|
|
2024-04-14 21:59:34 +02:00
|
|
|
RUN chmod +x use_model.py
|