mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-12-10 00:27:25 -06:00
Bumps playwright from v1.54.1-noble to v1.54.2-noble. --- updated-dependencies: - dependency-name: playwright dependency-version: v1.54.2-noble dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
16 lines
499 B
Docker
16 lines
499 B
Docker
FROM mcr.microsoft.com/playwright:v1.54.2-noble
|
|
|
|
ENV NODE_VERSION 22.14
|
|
ENV TINI_VERSION v0.19.0
|
|
|
|
# Install Node.js
|
|
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash && \
|
|
\. "$HOME/.nvm/nvm.sh" && \
|
|
nvm install ${NODE_VERSION}
|
|
|
|
# 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", "--"]
|