mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-12-23 18:50:08 +00:00
9 lines
244 B
Docker
9 lines
244 B
Docker
FROM mcr.microsoft.com/playwright:v1.51.1-noble
|
|
|
|
ENV NODE_VERSION 22.14
|
|
|
|
# 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}
|