Files
shlink-web-client/dev.Dockerfile
dependabot[bot] 4d15eb7d8f Bump playwright from v1.62.0-noble to v1.62.1-noble
Bumps playwright from v1.62.0-noble to v1.62.1-noble.

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

Signed-off-by: dependabot[bot] <support@github.com>
2026-08-08 07:02:38 +00:00

10 lines
304 B
Docker

FROM mcr.microsoft.com/playwright:v1.62.1-noble
ENV TINI_VERSION v0.19.0
# Install tini
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /sbin/tini
RUN chmod +x /sbin/tini
# Set tini as the entry point, as node does not properly handle signals
ENTRYPOINT ["/sbin/tini", "--"]