filebrowser/Dockerfile.playwright-base

5 lines
136 B
Docker

FROM node:22-slim
WORKDIR /app
COPY ./frontend/package.json ./
RUN npm i @playwright/test
RUN npx playwright install --with-deps firefox