File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55# --------------------------------------------------------------------------
66
77ARG BASE_VERSION=15
8+ ARG UPSTREAM_URL="https://api.github.com/repos/rustmailer/bichon/releases/latest"
9+ ARG UPSTREAM_JQ=".tag_name"
10+
811# --- Backend Builder Stage ---
912FROM ghcr.io/daemonless/base:${BASE_VERSION} AS builder
1013
@@ -46,7 +49,9 @@ LABEL org.opencontainers.image.title="Bichon" \
4649 org.opencontainers.image.authors="daemonless" \
4750 io.daemonless.category="Utilities" \
4851 io.daemonless.port="15630" \
49- io.daemonless.arch="${FREEBSD_ARCH}"
52+ io.daemonless.arch="${FREEBSD_ARCH}" \
53+ io.daemonless.upstream-url="${UPSTREAM_URL}" \
54+ io.daemonless.upstream-jq="${UPSTREAM_JQ}"
5055
5156# Install runtime dependencies
5257RUN pkg update && \
Original file line number Diff line number Diff line change 11ARG BASE_VERSION=15
2+ ARG UPSTREAM_URL="https://api.github.com/repos/rustmailer/bichon/releases/latest"
3+ ARG UPSTREAM_JQ=".tag_name"
4+
25# --- Backend Builder Stage ---
36FROM ghcr.io/daemonless/base:${BASE_VERSION} AS builder
47
@@ -42,7 +45,9 @@ LABEL org.opencontainers.image.title="{{ title }}" \
4245{% - if ports %}
4346 io.daemonless.port="{{ ports[0] .port }}" \
4447{% - endif %}
45- io.daemonless.arch="${FREEBSD_ARCH}"
48+ io.daemonless.arch="${FREEBSD_ARCH}" \
49+ io.daemonless.upstream-url="${UPSTREAM_URL}" \
50+ io.daemonless.upstream-jq="${UPSTREAM_JQ}"
4651
4752# Install runtime dependencies
4853RUN pkg update && \
You can’t perform that action at this time.
0 commit comments