Files
documenso/docker/Dockerfile.chromium
Lucas Smith 790b385849 chore: add bundled chromium docker container (#2344)
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.
2025-12-23 22:09:12 +11:00

6 lines
168 B
Docker

ARG TAG=latest
FROM documenso/documenso:${TAG}
# Install @playwright/browser-chromium which bundles Playwright + Chromium
RUN npm install @playwright/browser-chromium