This commit is contained in:
commit
84e52fca63
3 changed files with 27 additions and 0 deletions
13
.drone.yml
Normal file
13
.drone.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
kind: pipeline
|
||||
type: docker
|
||||
name: image building
|
||||
|
||||
steps:
|
||||
- name: build&push
|
||||
image: plugins/docker
|
||||
settings:
|
||||
username: droneci
|
||||
password:
|
||||
from_secret: repo_password
|
||||
repo: harbor.hq.rosti.cz/library/builder
|
||||
tags: 35
|
6
Dockerfile
Normal file
6
Dockerfile
Normal file
|
@ -0,0 +1,6 @@
|
|||
FROM fedora:35
|
||||
|
||||
RUN dnf -y upgrade --refresh
|
||||
RUN dnf -y install python3.9 python3.10 python3-pip pipenv fish helm awscli ansible podman git git-lfs jq make openssh nodejs npm golang sqlite
|
||||
# kubectl terraform
|
||||
RUN dnf -y groupinstall "Development Tools"
|
8
Makefile
Normal file
8
Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
REPO=harbor.hq.rosti.cz/library/builder
|
||||
VERSION=35
|
||||
|
||||
build:
|
||||
docker build -t ${REPO}:${VERSION} .
|
||||
|
||||
push:
|
||||
docker push ${REPO}:${VERSION}
|
Loading…
Reference in a new issue