diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a56cd7d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM ubuntu:latest + +RUN apt-get update && apt-get install -y python3-pip unzip coreutils + +RUN pip install --user kaggle pandas + +WORKDIR /app + +COPY ./data_processing.sh ./ +COPY ./OrangeQualityData.csv ./ \ No newline at end of file diff --git a/data_processing.sh b/data_processing.sh index 03861e2..70b8797 100644 --- a/data_processing.sh +++ b/data_processing.sh @@ -2,5 +2,4 @@ head -n 100 OrangeQualityData.csv > processed_data.csv - cp processed_data.csv results.txt \ No newline at end of file