Enable corepack in playwright screenshots docker image

This commit is contained in:
Michael Telatynski 2026-02-12 14:54:59 +00:00
parent 82f185700e
commit f243b3dd54

View File

@ -6,6 +6,10 @@ WORKDIR /work
# fonts-dejavu is needed for the same RTL rendering as on CI
RUN apt-get update && apt-get -y install docker.io fonts-dejavu
# Set up corepack
RUN corepack enable
ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0
COPY docker-entrypoint.sh /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]