mirror of
https://github.com/documenso/documenso
synced 2026-04-21 21:37:18 +00:00
We use playwright + chromium for certificate generation and other things. Self-hosters often have an issue with generating certificates due to the base image not coming with chromium for size purposes. This adds a new `-chromium` tag to our docker images for downloading the larger bundled chromium containers.
5 lines
168 B
Text
5 lines
168 B
Text
ARG TAG=latest
|
|
FROM documenso/documenso:${TAG}
|
|
|
|
# Install @playwright/browser-chromium which bundles Playwright + Chromium
|
|
RUN npm install @playwright/browser-chromium
|