Files
full-stack-fastapi-template/frontend/Dockerfile.playwright

14 lines
162 B
Docker

FROM node:20
WORKDIR /app
COPY package*.json /app/
RUN npm install
RUN npx -y playwright install --with-deps
COPY ./ /app/
ARG VITE_API_URL=${VITE_API_URL}