22 lines
460 B
Docker
22 lines
460 B
Docker
# Inherit from some existing image
|
|
FROM ubuntu:latest
|
|
|
|
# Create the /app directory
|
|
WORKDIR /app
|
|
|
|
# Install required dependencies
|
|
ADD . .
|
|
RUN apt-get update && \
|
|
apt-get install -y python3.8 python3-pip figlet unzip
|
|
RUN pip install -r requirements.txt
|
|
|
|
ARG KAGGLE_USERNAME
|
|
ARG KAGGLE_KEY
|
|
|
|
# Copy scripts to the catalog
|
|
COPY ./load_data.sh /
|
|
# COPY ./kaggle.json /root/.kaggle/kaggle.json
|
|
|
|
# Run the copied script
|
|
RUN chmod +x /load_data.sh
|
|
RUN /load_data.sh |