ium_464953/.ipynb_checkpoints/Dockerfile-checkpoint

17 lines
301 B
Plaintext
Raw Normal View History

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