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