Initial commit
continuous-integration/drone Build is failing Details

This commit is contained in:
Adam Štrauch 2021-11-02 12:52:34 +01:00
commit 84e52fca63
Signed by: cx
GPG Key ID: 018304FFA8988F8D
3 changed files with 27 additions and 0 deletions

13
.drone.yml Normal file
View 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
View 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
View 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}