Compare commits

...

23 Commits
3.16 ... main

Author SHA1 Message Date
be8fb4e6ca
push to alpine 3.21
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 1m1s
2024-12-12 09:57:27 +01:00
7d5e6fc711
use alpine 3.20
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 0s
2024-05-27 10:39:29 +02:00
f919a15068
try this variant
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 1m28s
2023-12-14 10:39:17 +01:00
aa6be60bc8
use dev version 2023-12-14 10:24:15 +01:00
3b8e2bbb65
no defaults for us 2023-12-14 10:12:55 +01:00
c3517b949c
use workflow defaults 2023-12-14 10:07:36 +01:00
e204c8b155
move to gitea actions 2023-12-14 10:03:55 +01:00
6170fbca8f
push to alpine 3.18 2023-05-30 10:05:36 +02:00
e6ad978169
use base image 3-17-3.1.3.0 2023-02-16 21:05:30 +01:00
b2c071960a
push to alpine 3.17 2022-11-23 13:30:07 +01:00
a03b906a3e Delete '.gitlab-ci.yml' 2022-11-11 06:44:37 +00:00
0552eca826 Add '.woodpecker.yml' 2022-11-11 06:38:16 +00:00
8e99da417d use newer base image 2022-07-12 18:38:15 +02:00
27bd707230 Update .gitlab-ci.yml [skip CI] 2022-02-18 09:29:37 +00:00
ce8fad0fe6 Update .gitlab-ci.yml [skip CI] 2022-02-16 07:53:02 +00:00
52521127f0 Update .gitlab-ci.yml [skip CI] 2022-02-15 18:50:21 +00:00
7cd09e0a0e Update .gitlab-ci.yml [skip CI] 2022-02-15 16:49:54 +00:00
d30c8d0cd5 Update .gitlab-ci.yml [skip CI] 2022-02-15 16:15:04 +00:00
e3d6484d2f Update .gitlab-ci.yml 2022-02-15 15:21:49 +00:00
778a5bef9f Update .gitlab-ci.yml 2022-02-15 15:14:44 +00:00
8ea7be0d5c Update .gitlab-ci.yml 2022-02-15 15:07:58 +00:00
2a8fab60ec Update .gitlab-ci.yml 2022-02-14 18:18:23 +00:00
fa1544c099 Update .gitlab-ci.yml 2022-02-14 18:13:41 +00:00
3 changed files with 15 additions and 25 deletions

View File

@ -0,0 +1,12 @@
name: Build Multiarch Container Image
on: [push]
jobs:
call-reusable-workflow:
uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
sha: ${{ gitea.sha }}
registry_url: ${{ secrets.REGISTRY_URL }}
registry_user: ${{ secrets.REGISTRY_USER }}
registry_pw: ${{ secrets.REGISTRY_PW }}

View File

@ -1,22 +0,0 @@
variables:
CONTAINER_NAME: thallian/confd-env
build:
stage: build
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
script:
- mkdir -p /kaniko/.docker
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(printf "%s:%s" "$CI_REGISTRY_USER" "$CI_REGISTRY_PASSWORD" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
- >-
/kaniko/executor
--context "$CI_PROJECT_DIR"
--dockerfile "$CI_PROJECT_DIR/Dockerfile"
--destination "$CONTAINER_NAME:$CI_COMMIT_SHA"
--destination "$CONTAINER_NAME:$CI_COMMIT_REF_NAME"
--destination "$CONTAINER_NAME:latest"
downstream:
stage: .post
trigger: containers/php8-fpm

View File

@ -1,4 +1,4 @@
FROM golang:1.13.14-alpine AS builder
FROM docker.io/golang:1.22-alpine3.21 AS builder
RUN apk --no-cache add \
git \
@ -8,10 +8,10 @@ RUN mkdir -p $GOPATH/src/github.com/kelseyhightower
RUN git clone https://github.com/kelseyhightower/confd.git $GOPATH/src/github.com/kelseyhightower/confd
WORKDIR $GOPATH/src/github.com/kelseyhightower/confd
RUN git checkout v0.16.0
RUN git checkout 919444eb6cf721d198b2bb18581d0f0b3734d107
RUN make
FROM thallian/alpine-s6:latest
FROM docker.io/thallian/alpine-s6:3.21-3.2.0.2
COPY --from=builder /go/src/github.com/kelseyhightower/confd/bin/confd /bin/confd