This commit is contained in:
Alicja Szulecka 2024-04-02 14:33:49 +02:00
parent 5caa1d82b5
commit 7d827bf89d
2 changed files with 3 additions and 6 deletions

View File

@ -1,8 +1,8 @@
FROM ubuntu:latest
# Dockerfile
ARG KAGGLE_USERNAME
ARG KAGGLE_KEY
ENV KAGGLE_USERNAME=alicjaszulecka
ENV KAGGLE_KEY=default_key
RUN apt update && apt install -y python3-pip
RUN apt install unzip
@ -13,9 +13,6 @@ RUN pip install --user scikit-learn
RUN pip install --user matplotlib
RUN pip install --user geopandas
RUN mkdir /.kaggle
RUN chmod +x /.kaggle
WORKDIR /app
COPY ./get_dataset.sh ./

2
Jenkinsfile vendored
View File

@ -16,7 +16,7 @@ pipeline {
script {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
def customImage = docker.build("custom-image", "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} .")
def customImage = docker.build("custom-image", "--build-arg KAGGLE_USERNAME=$KAGGLE_USERNAME --build-arg KAGGLE_KEY=$KAGGLE_KEY .")
customImage.inside {
sh 'bash ./get_dataset.sh $CUTOFF'
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true