9 lines
260 B
Docker
9 lines
260 B
Docker
|
FROM gtstef/playwright-base
|
||
|
WORKDIR /app
|
||
|
COPY [ "./_docker/src/noauth/", "./" ]
|
||
|
WORKDIR /app/frontend
|
||
|
COPY [ "./frontend/", "./" ]
|
||
|
WORKDIR /app/backend/
|
||
|
COPY [ "./backend/filebrowser", "./"]
|
||
|
RUN ./filebrowser & sleep 2 && cd ../frontend && npx playwright test
|