chore: update to 2.8.1 with bookworm and rust

This commit is contained in:
Jesús Pérez Lorenzo 2024-10-03 03:31:17 +01:00
parent 4d76f70e4e
commit 6f838d6a74
No known key found for this signature in database
4 changed files with 24 additions and 11 deletions

View File

@ -39,3 +39,11 @@ Move to alpine 3.15
Add YQ Kubectl Restic Add YQ Kubectl Restic
--- ---
date: 3 October 2024
2.8.1
Move to bookworm with Rust
Add YQ Kubectl Restic Nushell Rust env
---

View File

@ -7,7 +7,7 @@ Repo: https://github.com/almir/docker-webhook.git
Source: docker-webhook Source: docker-webhook
Name: webhook-pipeline Name: webhook-pipeline
Version: 2.8.0 Version: 2.8.1
# To get latest_image # To get latest_image
IMAGE_NAME: almir/webhook IMAGE_NAME: almir/webhook

View File

@ -1,10 +1,10 @@
# Dockerfile for https://github.com/adnanh/webhook # Dockerfile for https://github.com/adnanh/webhook
FROM docker.io/golang:alpine3.15 AS build FROM docker.io/golang:1-bookworm AS build
#MAINTAINER Almir Dzinovic <almir@dzinovic.net> #MAINTAINER Almir Dzinovic <almir@dzinovic.net>
WORKDIR /go/src/github.com/adnanh/webhook WORKDIR /go/src/github.com/adnanh/webhook
ENV WEBHOOK_VERSION 2.8.0 ENV WEBHOOK_VERSION 2.8.1
RUN apk add --update -t build-deps curl libc-dev gcc libgcc RUN apk add --update -t build-deps curl libc-dev gcc libgcc
RUN curl -L --silent -o webhook.tar.gz https://github.com/adnanh/webhook/archive/${WEBHOOK_VERSION}.tar.gz && \ RUN curl -L --silent -o webhook.tar.gz https://github.com/adnanh/webhook/archive/${WEBHOOK_VERSION}.tar.gz && \
tar -xzf webhook.tar.gz --strip 1 && \ tar -xzf webhook.tar.gz --strip 1 && \
@ -14,27 +14,32 @@ RUN curl -L --silent -o webhook.tar.gz https://github.com/adnanh/webhook
rm -rf /var/cache/apk/* && \ rm -rf /var/cache/apk/* && \
rm -rf /go rm -rf /go
FROM docker.io/alpine:3.15 #FROM docker.io/alpine:edge
FROM docker.io/rust::bookworm
ENV RESTIC_VERSION=0.12.1 ENV RESTIC_VERSION=0.17.1
ENV RESTIC_ARCH=linux_amd64 ENV RESTIC_ARCH=linux_amd64
ENV K8S_VERSION=1.23.1 ENV K8S_VERSION=1.31.1
ENV K8S_ARCH=linux-amd64 ENV K8S_ARCH=linux-amd64
ENV JQ_VERSION=1.6 ENV JQ_VERSION=1.7,1
ENV JQ_ARCH=linux64 ENV JQ_ARCH=linux64
ENV YQ_VERSION=4.16.2 ENV YQ_VERSION=4.44.3
ENV YQ_ARCH=linux_amd64 ENV YQ_ARCH=linux_amd64
RUN apk add --update \ #RUN apk add --update \
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
ca-certificates \ ca-certificates \
bash \ bash \
vim \ vim \
git \ git \
bzip2 \ bzip2 \
sed \ sed \
nushell \
openssh \ openssh \
openssl \ openssl \
libressl \ libressl \

View File

@ -1,2 +1,2 @@
#!/bin/bash #!/bin/bash
podman build -t webhook:2.8.0 . podman build -t webhook:2.8.1 .