FROM mcr.microsoft.com/playwright:v1.39.0-jammy

ENV APP_PATH /usr/src/app

# Set Application Environment
WORKDIR ${APP_PATH}
COPY ./test-module ./
RUN npm i
RUN npx playwright install

ENTRYPOINT ["bash","run.sh"]