2024-10-15 20:01:25 +02:00
|
|
|
FROM mcr.microsoft.com/playwright:v1.48.0-jammy
|
2023-11-28 11:22:25 +01:00
|
|
|
|
2024-10-15 15:57:26 +02:00
|
|
|
WORKDIR /work
|
2023-11-28 11:22:25 +01:00
|
|
|
|
2024-08-28 08:47:56 +02:00
|
|
|
# fonts-dejavu is needed for the same RTL rendering as on CI
|
|
|
|
RUN apt-get update && apt-get -y install docker.io fonts-dejavu
|
2023-11-28 11:22:25 +01:00
|
|
|
|
|
|
|
COPY docker-entrypoint.sh /opt/docker-entrypoint.sh
|
|
|
|
ENTRYPOINT ["bash", "/opt/docker-entrypoint.sh"]
|