Skip to content

Commit bb09933

Browse files
build(docker): missing package.json files of demo and react-tei packages before doing install (#255)
* try to remove cache attributes * log node_modules * log node_modules/.pnpm * fix: missing package.json files of demo and react-tei package before doing install
1 parent 7259018 commit bb09933

3 files changed

Lines changed: 17 additions & 7 deletions

File tree

.dockerignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Dependencies
2+
**/node_modules
3+
4+
# Build
5+
**/.turbo
6+
**/dist
7+
**/tsconfig.tsbuildinfo
8+
**/tsconfig.*.tsbuildinfo
9+
10+
# Vitest
11+
**/__screenshots__
12+
13+
# End-to-end tests
14+
packages/e2e

.gitignore

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
1-
2-
# NPM
3-
/node_modules
1+
# Dependencies
42
**/node_modules
53

64
# Build
75
**/.turbo
8-
**/*.local
96
**/dist
10-
**/dist-ssr
11-
**/routeTree.gen.ts
127
**/tsconfig.tsbuildinfo
138
**/tsconfig.*.tsbuildinfo
149

15-
1610
# Vitest
1711
**/__screenshots__
1812

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ RUN corepack enable
77
COPY package.json ./
88
COPY pnpm-workspace.yaml ./
99
COPY pnpm-lock.yaml ./
10+
COPY packages/demo/package.json ./packages/demo/
11+
COPY packages/react-tei/package.json ./packages/react-tei/
1012

1113

1214
# Build stage where we install all the dependencies and create the production build

0 commit comments

Comments
 (0)