Files
nexodus/Containerfile.playwright
Hiram Chirino 189d9a144a Playwright bump
- bump the playrwright container version to match.

Signed-off-by: Hiram Chirino <hiram@hiramchirino.com>
2024-03-17 18:23:40 -04:00

10 lines
262 B
Docker

FROM mcr.microsoft.com/playwright:v1.41.2-jammy
ENV NODE_EXTRA_CA_CERTS=/usr/local/share/ca-certificates/cacerts.crt
RUN apt-get update -y \
&& apt-get install -y libnss3-tools \
&& apt-get clean all
COPY --chmod=755 ./hack/update-ca.sh /update-ca.sh