Compare commits
3 commits
a36f8cfd28
...
3d7a0668c9
Author | SHA1 | Date | |
---|---|---|---|
3d7a0668c9 | |||
a84fa326cb | |||
70a0a99e62 |
2 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ jobs:
|
|||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v4
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm64/v8
|
||||
push: true
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# STEP 1 build executable binary
|
||||
FROM golang:1.23.0-alpine AS builder
|
||||
FROM golang:1.23.1-alpine AS builder
|
||||
|
||||
ENV CADVISOR_VERSION="v0.49.1"
|
||||
|
||||
|
@ -11,7 +11,7 @@ RUN apk upgrade --no-cache \
|
|||
&& ./build/build.sh
|
||||
|
||||
# STEP 2 build the image including only the binary
|
||||
FROM alpine:3.20.2
|
||||
FROM alpine:3.20.3
|
||||
|
||||
RUN apk upgrade --no-cache && apk add libc6-compat device-mapper findutils zfs \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
|
Loading…
Reference in a new issue