ium_464953/Dockerfile
2024-05-09 02:20:22 +02:00

18 lines
306 B
Docker

FROM ubuntu:latest
RUN apt-get update && \
apt-get install -y \
python3 \
python3-pip \
wget \
unzip \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install pandas scikit-learn requests numpy matplotlib
WORKDIR /app
COPY use_model.py /app/
RUN chmod +x use_model.py