Debug 5
This commit is contained in:
parent
f176ed32f1
commit
2bb844a728
19
Dockerfile
19
Dockerfile
@ -1,18 +1,3 @@
|
|||||||
# Nasz obraz będzie dziedziczył z obrazu Ubuntu w wersji latest
|
FROM node:20.11.1-alpine3.19
|
||||||
FROM ubuntu:latest
|
|
||||||
|
|
||||||
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
|
RUN apk add -U subversion
|
||||||
RUN apt update && apt install -y python3-pip
|
|
||||||
|
|
||||||
RUN pip3 install --user datasets kaggle
|
|
||||||
|
|
||||||
RUN pip3 list
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
# Skopiujmy nasz skrypt do katalogu /app w kontenerze
|
|
||||||
COPY ./create-dataset.py ./
|
|
||||||
|
|
||||||
# # Domyślne polecenie, które zostanie uruchomione w kontenerze po jego starcie
|
|
||||||
# CMD python3 create-dataset.py
|
|
18
Dockerfile.bak
Normal file
18
Dockerfile.bak
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Nasz obraz będzie dziedziczył z obrazu Ubuntu w wersji latest
|
||||||
|
FROM ubuntu:latest
|
||||||
|
|
||||||
|
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
|
||||||
|
RUN apt update && apt install -y python3-pip
|
||||||
|
|
||||||
|
RUN pip3 install --user datasets kaggle
|
||||||
|
|
||||||
|
RUN pip3 list
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# Skopiujmy nasz skrypt do katalogu /app w kontenerze
|
||||||
|
COPY ./create-dataset.py ./
|
||||||
|
|
||||||
|
# # Domyślne polecenie, które zostanie uruchomione w kontenerze po jego starcie
|
||||||
|
# CMD python3 create-dataset.py
|
11
Jenkinsfile
vendored
Normal file
11
Jenkinsfile
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
pipeline {
|
||||||
|
agent { dockerfile true }
|
||||||
|
stages {
|
||||||
|
stage('Test') {
|
||||||
|
steps {
|
||||||
|
sh 'node --version'
|
||||||
|
sh 'svn --version'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user