From 6aabe7acc463ef2414721307f3da84a7bb7919c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Sat, 12 Aug 2023 13:09:47 +0200 Subject: [PATCH] Version 38 with task --- .drone.yml | 2 +- Dockerfile | 3 ++- Makefile | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 2de23d5..32370bb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -15,7 +15,7 @@ steps: password: admin repo: registry.kube.ceperka.net image: registry.kube.ceperka.net/library/builder - tag: 36 + tag: 38 privileged: true commands: - echo "$password" | podman login -u $username --password-stdin $repo diff --git a/Dockerfile b/Dockerfile index b7314d3..2b5b9ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM fedora:36 +FROM fedora:38 ADD ceperka-ca.crt /etc/pki/ca-trust/source/anchors/ ADD rosti-ca.crt /etc/pki/ca-trust/source/anchors/ @@ -7,4 +7,5 @@ RUN dnf -y upgrade --refresh RUN dnf -y install python3.9 python3.10 python3-pip pipenv fish helm awscli ansible podman podman-docker git git-lfs jq make openssh nodejs npm golang sqlite rsync # kubectl terraform RUN dnf -y groupinstall "Development Tools" +RUN wget https://github.com/go-task/task/releases/download/v3.28.0/task_linux_amd64.rpm && dnf localinstall task_linux_amd64.rpm && rm task_linux_amd64.rpm RUN update-ca-trust diff --git a/Makefile b/Makefile index 49497cf..6574ace 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ REPO=harbor.hq.rosti.cz/library/builder -VERSION=35 +VERSION=38 build: docker build -t ${REPO}:${VERSION} .