Skip to content

Commit

Permalink
add jest dir to docker copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Skinner committed Oct 15, 2024
1 parent 4044c31 commit ebad38a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dockerfiles/Dockerfile.browser
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ RUN apk add --update bash python3 make gcc g++ musl-dev xvfb-run curl
WORKDIR /app

COPY package*.json ./
COPY babel.config.js lerna.json .eslintignore .eslintrc.js jest.config.js jest tsconfig.json ./
COPY babel.config.js lerna.json .eslintignore .eslintrc.js jest.config.js tsconfig.json ./
COPY jest ./jest
ADD min_packages.tar .
COPY bin ./bin
COPY packages ./packages
Expand Down
3 changes: 2 additions & 1 deletion dockerfiles/Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ RUN apk add --update bash python3 make gcc g++ musl-dev xvfb-run curl
WORKDIR /app

COPY package*.json ./
COPY babel.config.js lerna.json .eslintignore .eslintrc.js jest.config.js jest tsconfig.json ./
COPY babel.config.js lerna.json .eslintignore .eslintrc.js jest.config.js tsconfig.json ./
COPY jest ./jest
ADD min_packages.tar .
COPY bin ./bin
COPY scripts ./scripts
Expand Down
3 changes: 2 additions & 1 deletion dockerfiles/Dockerfile.node
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ RUN apk add --update bash python3 make gcc g++ musl-dev xvfb-run curl
WORKDIR /app

COPY package*.json ./
COPY babel.config.js lerna.json .eslintignore .eslintrc.js jest.config.js jest tsconfig.json ./
COPY babel.config.js lerna.json .eslintignore .eslintrc.js jest.config.js tsconfig.json ./
COPY jest ./jest
ADD min_packages.tar .
COPY bin ./bin
COPY packages ./packages
Expand Down

0 comments on commit ebad38a

Please sign in to comment.