11 lines
357 B
Docker
11 lines
357 B
Docker
|
FROM gtstef/playwright-base
|
||
|
WORKDIR /app
|
||
|
COPY [ "./_docker/src/proxy/", "./" ]
|
||
|
WORKDIR /app/frontend
|
||
|
COPY [ "./frontend/", "./" ]
|
||
|
WORKDIR /app/backend/
|
||
|
COPY [ "./backend/filebrowser", "./"]
|
||
|
RUN apt update && apt install nginx -y
|
||
|
RUN mv default.conf /etc/nginx/conf.d/default.conf
|
||
|
RUN nginx & ./filebrowser & sleep 2 && cd ../frontend && npx playwright test
|