Skip to content

Commit

Permalink
Upgrade base image
Browse files Browse the repository at this point in the history
  • Loading branch information
rkojedzinszky committed Sep 26, 2023
1 parent 8348cf1 commit b320dd5
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 182 deletions.
27 changes: 0 additions & 27 deletions .drone.build.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .drone.manifest.yml

This file was deleted.

116 changes: 0 additions & 116 deletions .drone.yml

This file was deleted.

53 changes: 53 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Docker Image CI

on:
push:
branches:
- master
tags:
- "*.*.*"

env:
REGISTRY: ghcr.io

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup qemu
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to ${{ env.REGISTRY }}
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ github.token }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}
tags: |
type=semver,pattern={{major}}.{{minor}}.{{patch}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
# set latest tag for default branch
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and publish
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64, linux/arm/v7, linux/arm64/v8
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.15
FROM alpine:3.18.3

LABEL org.opencontainers.image.authors "Richard Kojedzinszky <richard@kojedz.in>"
LABEL org.opencontainers.image.source https://github.com/kubernetize/rrdcached
Expand Down
25 changes: 0 additions & 25 deletions manifests/ghcr.io-kubernetize-rrdcached.tmpl

This file was deleted.

0 comments on commit b320dd5

Please sign in to comment.