mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-08-06 11:01:55 +00:00
10 lines
304 B
Docker
10 lines
304 B
Docker
FROM mcr.microsoft.com/playwright:v1.62.0-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", "--"]
|