Create datasets in Dockerfile

This commit is contained in:
Paweł Skórzewski 2024-03-26 12:15:35 +01:00
parent 68ec510212
commit 06f4c3bcb1
3 changed files with 31 additions and 1 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
# Nasz obraz będzie dzidziczył 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
# 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

View File

@ -1,5 +1,7 @@
pipeline {
agent any
agent {
dockerfile true
}
parameters {
string (

12
create-dataset.py Normal file
View File

@ -0,0 +1,12 @@
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
from datasets import load_dataset
def create_dataset():
iris_dataset = load_dataset("scikit-learn/iris")
if __name__ == "__main__":
create_dataset()