Update snapshot (#2717)

This commit is contained in:
Michael Telatynski
2025-11-26 20:08:07 +00:00
committed by GitHub
parent 17a16d6750
commit d5e27e5b16
6 changed files with 15 additions and 4 deletions
+4 -1
View File
@@ -2,7 +2,10 @@ FROM mcr.microsoft.com/playwright:v1.57.0-jammy@sha256:6aca677c27a967caf7673d108
WORKDIR /work/element-desktop
RUN apt-get update && apt-get -y install xvfb && apt-get purge -y --auto-remove && rm -rf /var/lib/apt/lists/*
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
USER 1000:1000