ium_478841/Dockerfile
2022-04-03 11:46:06 +02:00

22 lines
461 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 pip3 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