playwright / Dockerfile
and
w
090a667
raw
history blame
160 Bytes
FROM mcr.microsoft.com/playwright:v1.40.0-jammy
#WORKDIR /code
#COPY package.json ./package.json
RUN npm i playwright
COPY . .
CMD [ "node", "index.mjs" ]