Files
full-stack-fastapi-template/frontend/Dockerfile.playwright
T
34d14a4e76 ⬆ Bump playwright from v1.58.2-noble to v1.61.1-noble in /frontend in the docker group across 1 directory (#2361)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alejandra <90076947+alejsdev@users.noreply.github.com>
Co-authored-by: Alejandra <alejsdev@gmail.com>
2026-07-04 20:54:56 +02:00

22 lines
391 B
Docker

FROM mcr.microsoft.com/playwright:v1.61.1-noble
WORKDIR /app
RUN apt-get update && apt-get install -y unzip \
&& rm -rf /var/lib/apt/lists/*
RUN curl -fsSL https://bun.sh/install | bash
ENV PATH="/root/.bun/bin:$PATH"
COPY package.json bun.lock /app/
COPY frontend/package.json /app/frontend/
WORKDIR /app/frontend
RUN bun install
COPY ./frontend /app/frontend
ARG VITE_API_URL