Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions pwa/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ RUN apk add --no-cache libc6-compat bash git

WORKDIR /srv/app

RUN npm install --global corepack@latest && \
corepack enable && \
corepack prepare --activate pnpm@latest && \
RUN corepack enable && \
corepack prepare pnpm@9.15.4 --activate && \
pnpm config -g set store-dir /.pnpm-store

# Next.js collects completely anonymous telemetry data about general usage.
Expand Down Expand Up @@ -82,7 +81,7 @@ RUN --mount=type=secret,id=GITHUB_KEY \
if [ -z "$GITHUB_KEY" ]; then \
echo "Please set the GITHUB_KEY secret" && exit 1 ; \
fi \
&& npm i ts-node && npm run prebuild
&& pnpm add ts-node && pnpm run prebuild

# ADD https://soyuka.me/contributors.json ./data/contributors.json

Expand All @@ -98,7 +97,7 @@ RUN --mount=type=secret,id=GITHUB_KEY \
if [ -z "$GITHUB_KEY" ]; then \
echo "Please set the GITHUB_KEY secret" && exit 1 ; \
fi \
&& npm i ts-node && npm run postbuild
&& pnpm add ts-node && pnpm run postbuild

# Production image, copy all the files and run next
FROM node:18-alpine AS prod
Expand Down
4 changes: 3 additions & 1 deletion pwa/data/con/2026/speakers/en/mathias-arlaud.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ Mathias is a lead developer, consultant, and Symfony trainer who has spent years

His track record includes four pivotal years working alongside the creators of Symfony, API Platform, Mercure, and FrankenPHP.

As a dedicated **open-source advocate**, he focuses his contributions on the Symfony framework, specifically its data serialization system. Mathias specializes in architecting fast, robust, and maintainable API solutions. And if you ever trigger the 'PHPStorm vs. VSCode' debate, don't be surprised when he simply answers: VIM.
As a dedicated **open-source advocate**, he focuses his contributions on the Symfony framework, specifically its data serialization system.

Mathias specializes in architecting fast, robust, and maintainable API solutions. And if you ever trigger the 'PHPStorm vs. VSCode' debate, don't be surprised when he simply answers: VIM.
Loading