Skip to content

Commit da8025c

Browse files
committed
fix dockerfile
1 parent cdc17d7 commit da8025c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ FROM base as build
2222

2323
# Install packages needed to build node modules
2424
RUN apt-get update -qq && \
25-
apt-get install --no-install-recommends -y build-essential node-gyp pkg-config python-is-python3
25+
apt-get install --no-install-recommends -y build-essential node-gyp pkg-config python-is-python3
2626

2727
# Install node modules
2828
COPY --link package.json pnpm-lock.yaml ./
29-
RUN pnpm install --frozen-lockfile --prod=false
29+
RUN pnpm install --frozen-lockfile --prod=false && pnpx playwright install --with-deps chromium
3030

3131
# Copy application code
3232
COPY --link . .

0 commit comments

Comments
 (0)