20 lines
364 B
Docker
20 lines
364 B
Docker
FROM ubuntu:latest
|
|
|
|
ENV KAGGLE_USERNAME=gulczas
|
|
ENV KAGGLE_KEY=default_key
|
|
|
|
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 kaggle numpy
|
|
|
|
WORKDIR /app
|
|
|
|
COPY model_creator.py /app/
|
|
|
|
RUN chmod +x model_creator.py |