Skip to content

Commit 43e0c17

Browse files
author
mike dupont
committed
now docker compose runs tests
1 parent 83c80e9 commit 43e0c17

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

Dockerfile

+4-11
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,10 @@ ADD tsconfig.mina-signer-web.json tsconfig.mina-signer-web.json
1515
ADD tsconfig.node.json tsconfig.node.json
1616
ADD tsconfig.test.json tsconfig.test.json
1717
ADD tsconfig.web.json tsconfig.web.json
18-
FROM base AS prod-deps
1918
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
20-
21-
FROM base AS build
2219
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
2320

24-
## now the source copyied
21+
## now the source is copied
2522
COPY src /app/src
2623
COPY tests /app/tests
2724
COPY benchmark /app/benchmark
@@ -30,15 +27,11 @@ COPY dune-project /app/dune-project
3027

3128
RUN npm ci
3229
RUN pnpm run build
30+
RUN pnpm install jest
3331

3432
COPY run-jest-tests.sh /app/run-jest-tests.sh
3533
COPY jest.config.js /app/jest.config.js
36-
RUN pnpm run test || echo skip errors
37-
RUN pnpm run test:unit || echo skip errors
3834

39-
FROM base
40-
COPY --from=prod-deps /app/node_modules /app/node_modules
41-
COPY --from=build /app/dist /app/dist
42-
EXPOSE 8000
43-
CMD [ "pnpm", "start" ]
35+
CMD [ "pnpm", "run", "test" ]
4436

37+
#RUN pnpm run test || echo skip errors

0 commit comments

Comments
 (0)