jenkinsfile fix

This commit is contained in:
s444417 2022-04-03 12:35:35 +02:00
parent 83c53683ae
commit 1d14e38cea

View File

@ -6,10 +6,9 @@ RUN apt update && apt install -y
RUN apt-get install -y python3 RUN apt-get install -y python3
RUN apt-get install -y unzip RUN apt-get install -y unzip
RUN apt-get install -y python3-pip RUN apt-get install -y python3-pip
RUN pip install --upgrade pip
RUN pip install --user kaggle RUN python3 -m pip install --user kaggle
RUN pip install --user pandas RUN python3 -m pip install --user pandas
# Stwórzmy w kontenerze (jeśli nie istnieje) katalog /app i przejdźmy do niego (wszystkie kolejne polecenia RUN, CMD, ENTRYPOINT, COPY i ADD będą w nim wykonywane) # Stwórzmy w kontenerze (jeśli nie istnieje) katalog /app i przejdźmy do niego (wszystkie kolejne polecenia RUN, CMD, ENTRYPOINT, COPY i ADD będą w nim wykonywane)
WORKDIR /app WORKDIR /app