We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdc17d7 commit da8025cCopy full SHA for da8025c
1 file changed
Dockerfile
@@ -22,11 +22,11 @@ FROM base as build
22
23
# Install packages needed to build node modules
24
RUN apt-get update -qq && \
25
- apt-get install --no-install-recommends -y build-essential node-gyp pkg-config python-is-python3
+ apt-get install --no-install-recommends -y build-essential node-gyp pkg-config python-is-python3
26
27
# Install node modules
28
COPY --link package.json pnpm-lock.yaml ./
29
-RUN pnpm install --frozen-lockfile --prod=false
+RUN pnpm install --frozen-lockfile --prod=false && pnpx playwright install --with-deps chromium
30
31
# Copy application code
32
COPY --link . .
0 commit comments