Skip to content

Commit

Permalink
ci: updated dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tikazyq committed Oct 24, 2024
1 parent 24c5664 commit 271c14e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ WORKDIR /app
# Install pnpm
RUN npm install -g pnpm

# Copy pnpm-lock.yaml (if available)
COPY pnpm-lock.yaml ./
# Copy package.json and pnpm-lock.yaml
COPY package.json pnpm-lock.yaml ./

# Install project dependencies
RUN pnpm install --frozen-lockfile
Expand All @@ -17,4 +17,4 @@ RUN pnpm install --frozen-lockfile
COPY . .

# Set the command to run Playwright tests
CMD ["pnpm", "exec", "playwright", "test"]
CMD ["pnpm", "exec", "playwright", "test"]

0 comments on commit 271c14e

Please sign in to comment.