Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency github.com/dunglas/mercure/caddy to v0.14.10 #3480

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 10 additions & 5 deletions api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ARG PHP_VERSION=8.2.7
ARG ALPINE_VERSION=3.18

# renovate: datasource=docker depName=caddy
ARG CADDY_VERSION=2.6.4
ARG CADDY_TARGET_VERSION=2.6.4

# "php" stage
FROM php:${PHP_VERSION}-fpm-alpine${ALPINE_VERSION} AS api_platform_php
Expand Down Expand Up @@ -133,18 +133,23 @@ RUN set -eux; \

# "caddy" stage
# depends on the "php" stage above
FROM caddy:${CADDY_VERSION}-builder-alpine AS api_platform_caddy_builder
FROM caddy:2.7-builder-alpine AS api_platform_caddy_builder

ARG CADDY_TARGET_VERSION
ENV CADDY_VERSION=v${CADDY_TARGET_VERSION}

# renovate: datasource=go depName=github.com/dunglas/mercure/caddy
ARG MERCURE_CADDY_VERSION=v0.14.7
ARG MERCURE_CADDY_VERSION=v0.14.10

# renovate: datasource=go depName=github.com/dunglas/vulcain/caddy
ARG VULCAIN_CADDY_VERSION=v0.4.3

# install Mercure and Vulcain modules
RUN xcaddy build \
RUN xcaddy build ${CADDY_VERSION} \
--with github.com/dunglas/mercure/caddy@$MERCURE_CADDY_VERSION \
--with github.com/dunglas/vulcain/caddy@$VULCAIN_CADDY_VERSION

FROM caddy:${CADDY_VERSION} AS api_platform_caddy
FROM caddy:${CADDY_TARGET_VERSION} AS api_platform_caddy

WORKDIR /srv/api

Expand Down