Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dubo-dubon-duponey committed Mar 17, 2024
1 parent 2a9ba52 commit 2fe9ef7
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 15 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
.DS_Store
/.idea
*/cache/*
cache
*trace.json
xxx-*
cache/
/xxx-*
6 changes: 3 additions & 3 deletions DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

### The what

This image is built using: `docker.io/dubodubonduponey/base:builder-bookworm-2024-02-20`
This image is built using: `docker.io/dubodubonduponey/base:builder-bookworm-2024-03-01`

The runtime part is based on: `docker.io/dubodubonduponey/base:runtime-bookworm-2024-02-20`
The runtime part is based on: `docker.io/dubodubonduponey/base:runtime-bookworm-2024-03-01`

Both these images are built upon: `docker.io/dubodubonduponey/debian:bookworm-2024-02-20`
Both these images are built upon: `docker.io/dubodubonduponey/debian:bookworm-2024-03-01`

You can find out more here:

Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
ARG FROM_REGISTRY=docker.io/dubodubonduponey

ARG FROM_IMAGE_FETCHER=base:golang-bookworm-2024-02-20
ARG FROM_IMAGE_BUILDER=base:builder-bookworm-2024-02-20
ARG FROM_IMAGE_AUDITOR=base:auditor-bookworm-2024-02-20
ARG FROM_IMAGE_TOOLS=tools:linux-bookworm-2024-02-20
ARG FROM_IMAGE_RUNTIME=base:runtime-bookworm-2024-02-20
ARG FROM_IMAGE_FETCHER=base:golang-bookworm-2024-03-01
ARG FROM_IMAGE_BUILDER=base:builder-bookworm-2024-03-01
ARG FROM_IMAGE_AUDITOR=base:auditor-bookworm-2024-03-01
ARG FROM_IMAGE_TOOLS=tools:linux-bookworm-2024-03-01
ARG FROM_IMAGE_RUNTIME=base:runtime-bookworm-2024-03-01

FROM $FROM_REGISTRY/$FROM_IMAGE_TOOLS AS builder-tools

Expand Down
2 changes: 1 addition & 1 deletion hack/helpers/install-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -o errexit -o errtrace -o functrace -o nounset -o pipefail

export SUITE=bookworm
export DATE=2024-02-20
export DATE=2024-03-01

export BIN_LOCATION="${BIN_LOCATION:-$HOME/bin}"
export PATH="$BIN_LOCATION:$PATH"
Expand Down
2 changes: 1 addition & 1 deletion hack/recipe.cue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ cakes: {

injectors: {
suite: * "bookworm" | =~ "^(?:bullseye|bookworm|trixie|sid)$" @tag(suite, type=string)
date: * "2024-02-20" | =~ "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" @tag(date, type=string)
date: * "2024-03-01" | =~ "^[0-9]{4}-[0-9]{2}-[0-9]{2}$" @tag(date, type=string)
platforms: string @tag(platforms, type=string)
registry: * "registry.local" | string @tag(registry, type=string)
}
Expand Down
2 changes: 1 addition & 1 deletion hack/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readonly root
if ! "$root/hack/build.sh" \
--inject registry="docker.io/dubodubonduponey" \
--inject progress=plain \
--inject date=2024-02-20 \
--inject date=2024-03-01 \
--inject suite=bookworm \
--inject platforms=linux/arm64 \
"image" "$@"; then
Expand Down

0 comments on commit 2fe9ef7

Please sign in to comment.