Skip to content

Commit

Permalink
Migrate test bot to npm (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
turikhay authored Jan 13, 2025
1 parent b971ed5 commit e23dfe0
Show file tree
Hide file tree
Showing 3 changed files with 869 additions and 610 deletions.
8 changes: 4 additions & 4 deletions tests_e2e/bot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:18

WORKDIR /usr/src/app
ENV NODE_ENV=production

RUN npm i -g pnpm
WORKDIR /usr/src/app

COPY package.json pnpm-lock.yaml ./
COPY package.json package-lock.json ./

RUN pnpm install --prod --frozen-lockfile
RUN npm ci

COPY . .

Expand Down
Loading

0 comments on commit e23dfe0

Please sign in to comment.