Skip to content

Commit 2efd7c1

Browse files
committed
ok, send the old broken test
1 parent ac8667d commit 2efd7c1

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ RUN npm install -g [email protected]
1313
WORKDIR /app
1414

1515
COPY package*.json ./
16+
# also make the below copies for the runtime stage to use.
17+
COPY ./config.js ./config.js
18+
COPY ./server ./server
1619

1720

1821
RUN npm install --production --no-install-recommends --fetch-retry-maxtimeout 500000
@@ -34,10 +37,8 @@ COPY ./src ./src
3437
# i am hoping the above will make it so that the frontend files will know that it is production.
3538
RUN npm run prod-build
3639

37-
# also make the below copies for the runtime stage to use.
38-
COPY ./config.js ./config.js
39-
COPY ./server ./server
40-
COPY ./build ./build
40+
41+
#COPY ./build ./build
4142
# they will need the above.
4243

4344
# Stage 2: Runtime

package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@
158158
"graphql": "^16.8.1",
159159
"html2canvas": "^1.4.1",
160160
"identity-obj-proxy": "^3.0.0",
161-
"js-cookie": "^3.0.5",
162161
"jszip": "^3.10.1",
163162
"localforage": "^1.10.0",
164163
"lodash": "^4.17.21",
@@ -167,9 +166,7 @@
167166
"passport": "^0.6.0",
168167
"passport-github2": "^0.1.12",
169168
"passport-google-oauth20": "^2.0.0",
170-
"prettier": "^2.8.8",
171169
"prop-types": "^15.8.1",
172-
"radium": "^0.26.2",
173170
"react-dnd": "^11.1.3",
174171
"react-dnd-html5-backend": "^11.1.3",
175172
"react-google-charts": "^4.0.1",
@@ -178,7 +175,6 @@
178175
"react-ace": "^10.1.0",
179176
"react-player": "^2.14.1",
180177
"react-router-dom": "^5.3.4",
181-
"redux-devtools-extension": "^2.13.9",
182178
"redux-mock-store": "^1.5.4",
183179
"regenerator-runtime": "^0.13.11",
184180
"resize-observer-polyfill": "^1.5.1",
@@ -187,8 +183,6 @@
187183
"socket.io-client": "^4.7.2",
188184
"source-map-support": "^0.5.21",
189185
"ts-node": "^10.9.2",
190-
"typescript-coverage-report": "^0.7.0",
191-
"uniqid": "^5.4.0",
192186
"use-debounce": "^8.0.4",
193187
"uuid": "^9.0.1",
194188
"vite": "^5.1.0",
@@ -233,9 +227,13 @@
233227
"react-dom": "^17.0.2",
234228
"react-redux": "^8.1.3",
235229
"redux": "^4.2.1",
230+
"redux-devtools-extension": "^2.13.9",
236231
"styled-components": "^5.3.11",
237232
"supertest": "^6.3.3",
238233
"typescript": "^4.9.5",
239-
"vitest": "^1.6.0"
234+
"typescript-coverage-report": "^0.7.0",
235+
"uniqid": "^5.4.0",
236+
"vitest": "^1.6.0",
237+
"prettier": "^2.8.8"
240238
}
241239
}

0 commit comments

Comments
 (0)