ium_478841/Dockerfile
2022-04-03 20:18:55 +02:00

23 lines
534 B
Docker

# Inherit from some existing image
FROM ubuntu:latest
# Create the /app directory
WORKDIR /app
# Install required dependencies
COPY ./requirements.txt .
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 ./scripts/. /
# COPY ./kaggle.json /root/.kaggle/kaggle.json
# Run the copied script
RUN chmod +x /load_data.sh && /load_data.sh
RUN chmod +x /grab_avocado.py && python3 /grab_avocado.py