2025-11-25 15:41:05 +00:00
|
|
|
FROM mcr.microsoft.com/playwright:v1.57.0-jammy@sha256:6aca677c27a967caf7673d108ac67ffaf8fed134f27e17b27a05464ca0ace831
|
2024-01-11 18:49:20 +00:00
|
|
|
|
|
|
|
|
WORKDIR /work/element-desktop
|
|
|
|
|
|
2025-11-26 20:08:07 +00:00
|
|
|
RUN apt-get update && apt-get -y install xvfb dbus-x11 && apt-get purge -y --auto-remove && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
# Create node_modules & dist dirs so that the volumes have the correct permissions
|
|
|
|
|
RUN mkdir node_modules dist && chown 1000:1000 node_modules dist
|
2024-01-11 18:49:20 +00:00
|
|
|
|
|
|
|
|
USER 1000:1000
|
|
|
|
|
|
|
|
|
|
COPY docker-entrypoint.sh /opt/docker-entrypoint.sh
|
|
|
|
|
ENTRYPOINT ["bash", "/opt/docker-entrypoint.sh"]
|