chore: update to 2.8.1 with bookworm and rust
This commit is contained in:
parent
4d76f70e4e
commit
6f838d6a74
4 changed files with 24 additions and 11 deletions
|
|
@ -1,10 +1,10 @@
|
|||
# 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>
|
||||
|
||||
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 curl -L --silent -o webhook.tar.gz https://github.com/adnanh/webhook/archive/${WEBHOOK_VERSION}.tar.gz && \
|
||||
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 /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 K8S_VERSION=1.23.1
|
||||
ENV K8S_VERSION=1.31.1
|
||||
ENV K8S_ARCH=linux-amd64
|
||||
|
||||
ENV JQ_VERSION=1.6
|
||||
ENV JQ_VERSION=1.7,1
|
||||
ENV JQ_ARCH=linux64
|
||||
|
||||
ENV YQ_VERSION=4.16.2
|
||||
ENV YQ_VERSION=4.44.3
|
||||
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 \
|
||||
bash \
|
||||
vim \
|
||||
git \
|
||||
bzip2 \
|
||||
bzip2 \
|
||||
sed \
|
||||
nushell \
|
||||
openssh \
|
||||
openssl \
|
||||
libressl \
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/bash
|
||||
podman build -t webhook:2.8.0 .
|
||||
podman build -t webhook:2.8.1 .
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue