Compare commits
23 Commits
Author | SHA1 | Date | |
---|---|---|---|
be8fb4e6ca | |||
7d5e6fc711 | |||
f919a15068 | |||
aa6be60bc8 | |||
3b8e2bbb65 | |||
c3517b949c | |||
e204c8b155 | |||
6170fbca8f | |||
e6ad978169 | |||
b2c071960a | |||
a03b906a3e | |||
0552eca826 | |||
8e99da417d | |||
27bd707230 | |||
ce8fad0fe6 | |||
52521127f0 | |||
7cd09e0a0e | |||
d30c8d0cd5 | |||
e3d6484d2f | |||
778a5bef9f | |||
8ea7be0d5c | |||
2a8fab60ec | |||
fa1544c099 |
12
.gitea/workflows/container.yaml
Normal file
12
.gitea/workflows/container.yaml
Normal 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 }}
|
@ -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
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user