This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Work in progress - I abandoned this a while back, but still might be useful in future | |
| set -euo pipefail | |
| # Parameters | |
| START_YEAR=2023 | |
| NUM_YEARS=2 | |
| LOW_IMAGE_COUNT=5 | |
| MID_IMAGE_COUNT=500 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:3.15 as base | |
| ARG TARGETARCH | |
| ARG TARGETVARIANT | |
| FROM base AS base-amd64 | |
| ENV S6_OVERLAY_ARCH=x86_64 | |
| FROM base AS base-386 | |
| ENV S6_OVERLAY_ARCH=x86 |