Skip to content

Commit e8dbedf

Browse files
committed
Fix staticserver build (hopefully)
1 parent a7d66b1 commit e8dbedf

File tree

10 files changed

+26
-12
lines changed

10 files changed

+26
-12
lines changed

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
node_modules
22
**/node_modules
33
**/build
4+
**/dist
5+
**/*.tsbuildinfo
46
npm-debug.log
57
.env
68
files

daemons/apphandler/.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ node_modules
22
npm-debug.log
33
.env
44
files
5+
dist
6+
*.tsbuildinfo

daemons/authhandler/.dockerignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
npm-debug.log
3-
.env
3+
.env
4+
dist
5+
*.tsbuildinfo
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
npm-debug.log
3-
.env
3+
.env
4+
dist
5+
*.tsbuildinfo

daemons/housekeeping/.dockerignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
npm-debug.log
3-
.env
3+
.env
4+
dist
5+
*.tsbuildinfo

daemons/ltihandler/.dockerignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
npm-debug.log
3-
.env
3+
.env
4+
dist
5+
*.tsbuildinfo
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
npm-debug.log
3-
.env
3+
.env
4+
dist
5+
*.tsbuildinfo

daemons/noteshandler/.dockerignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
npm-debug.log
3-
.env
3+
.env
4+
dist
5+
*.tsbuildinfo

daemons/staticserver/.dockerignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
npm-debug.log
3-
.env
3+
.env
4+
dist
5+
*.tsbuildinfo

daemons/staticserver/Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,8 @@ COPY . .
1212

1313
RUN npx update-browserslist-db@latest
1414
RUN npm ci
15+
RUN npm run buildts
1516

16-
#debug code, to be removed
17-
RUN ls -la
18-
RUN ls -la node_modules/@fails-components/config
19-
RUN cat node_modules/@fails-components/config/package.json
20-
RUN ls -la node_modules/@fails-components/config/dist
2117
#build the app
2218
ARG BASE_WORK
2319
WORKDIR ${BASE_WORK}/node_modules/@fails-components/appstable

0 commit comments

Comments
 (0)