18 lines
295 B
Plaintext
18 lines
295 B
Plaintext
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
|
|
|
|
WORKDIR /app
|
|
|
|
COPY use_model.py /app/
|
|
|
|
RUN chmod +x use_model.py
|