File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ COPY --chown=app:app server server
63
63
COPY --chown=app:app --from=builder /app/dist dist
64
64
65
65
RUN npm ci --production && npm cache clean --force
66
+ RUN mkdir -p /app/.config/configstore
66
67
RUN ln -s dist/version.json version.json
67
68
68
69
ENV PORT=1443
Original file line number Diff line number Diff line change 134
134
"body-parser" : " ^1.20.0" ,
135
135
"choo" : " ^7.0.0" ,
136
136
"cldr-core" : " ^35.1.0" ,
137
+ "configstore" : " github:dannycoates/configstore#master" ,
137
138
"convict" : " ^6.2.3" ,
138
139
"convict-format-with-validator" : " ^6.2.0" ,
139
140
"double-ended-queue" : " ^2.1.0-0" ,
Original file line number Diff line number Diff line change @@ -111,6 +111,10 @@ const web = {
111
111
path . resolve ( __dirname , 'common' ) ,
112
112
// some dependencies need to get re-babeled because we
113
113
// have different targets than their default configs
114
+ path . resolve (
115
+ __dirname ,
116
+ 'node_modules/@dannycoates/webcrypto-liner'
117
+ ) ,
114
118
path . resolve ( __dirname , 'node_modules/@fluent' ) ,
115
119
path . resolve ( __dirname , 'node_modules/intl-pluralrules' )
116
120
] ,
@@ -123,7 +127,8 @@ const web = {
123
127
path . resolve ( __dirname , 'node_modules/crc' ) ,
124
128
path . resolve ( __dirname , 'node_modules/@fluent' ) ,
125
129
path . resolve ( __dirname , 'node_modules/@sentry' ) ,
126
- path . resolve ( __dirname , 'node_modules/tslib' )
130
+ path . resolve ( __dirname , 'node_modules/tslib' ) ,
131
+ path . resolve ( __dirname , 'node_modules/webcrypto-core' )
127
132
] ,
128
133
loader : 'webpack-unassert-loader'
129
134
}
You can’t perform that action at this time.
0 commit comments