We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17725d1 commit b490a09Copy full SHA for b490a09
1 file changed
Dockerfile
@@ -118,16 +118,13 @@ RUN \
118
119
# npm / nodejs
120
RUN \
121
+ sed -i 's/main$/main contrib non-free/g' /etc/apt/sources.list && apt-get update && \
122
cd /tmp && \
123
+ mkdir -p /tmp/playwright && cd /tmp/playwright && \
124
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash && \
125
\. "$HOME/.nvm/nvm.sh" && \
126
nvm install 20 && \
- node -v && npm -v
-
127
-# playwright
128
-RUN \
129
- sed -i 's/main$/main contrib non-free/g' /etc/apt/sources.list && apt-get update && \
130
- mkdir -p /tmp/playwright && cd /tmp/playwright && \
+ node -v && npm -v && \
131
npm install -g -D @playwright/test && \
132
npx playwright install --with-deps chromium
133
0 commit comments