mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-19 07:54:59 +01:00
11 lines
244 B
Docker
11 lines
244 B
Docker
|
FROM mcr.microsoft.com/playwright:v1.40.1-jammy
|
||
|
|
||
|
WORKDIR /work/element-desktop
|
||
|
|
||
|
RUN apt-get update && apt-get -y install xvfb
|
||
|
|
||
|
USER 1000:1000
|
||
|
|
||
|
COPY docker-entrypoint.sh /opt/docker-entrypoint.sh
|
||
|
ENTRYPOINT ["bash", "/opt/docker-entrypoint.sh"]
|