diff --git a/Dockerfile b/Dockerfile index ce40feb..1d8815f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,6 @@ RUN pip3 install pandas numpy WORKDIR /app COPY create-dataset.py /app -COPY ./data/barcelona_weekends.csv /app +COPY barcelona_weekends.csv /app CMD ["python3", "create-dataset.py"] \ No newline at end of file diff --git a/Jenkinsfile-create-dataset-docker b/Jenkinsfile-create-dataset-docker index 5a3ec4c..0bca73e 100644 --- a/Jenkinsfile-create-dataset-docker +++ b/Jenkinsfile-create-dataset-docker @@ -34,7 +34,7 @@ pipeline { steps { withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { sh 'kaggle datasets download -d thedevastator/airbnb-prices-in-european-cities' - sh 'unzip airbnb-prices-in-european-cities.zip -d data' + sh 'unzip airbnb-prices-in-european-cities.zip' sh 'ls' } }