Files
full-stack-fastapi/frontend/Dockerfile.playwright
dependabot[bot] fa39625d80 ⬆ Bump playwright from v1.58.0-noble to v1.58.2-noble in /frontend (#2175)
* ⬆ Bump playwright from v1.58.0-noble to v1.58.2-noble in /frontend

Bumps playwright from v1.58.0-noble to v1.58.2-noble.

---
updated-dependencies:
- dependency-name: playwright
  dependency-version: v1.58.2-noble
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* ⬆ Bump @playwright/test from 1.58.0 to 1.58.2

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alejandra <alejsdev@gmail.com>
2026-02-08 11:48:07 +01:00

22 lines
391 B
Docker

FROM mcr.microsoft.com/playwright:v1.58.2-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