mirror of
https://github.com/documenso/documenso.git
synced 2026-06-22 04:12:06 +10:00
790b385849
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.
6 lines
168 B
Docker
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
|