FB-1663 - fix make build-lattice failing

This commit is contained in:
Hoang Pham 2022-09-13 10:25:48 -05:00 committed by hphamMolecula
parent a7fbbd24d8
commit 9c3ec0bb97
3 changed files with 7 additions and 4 deletions

View file

@ -4,7 +4,7 @@ ARG GO_VERSION=latest
### Lattice builder ###
#######################
FROM moleculacorp/nodejs:latest as lattice-builder
FROM ghcr.io/featurebasedb/nodejs:0.0.1 as lattice-builder
WORKDIR /lattice
COPY lattice/package.json ./

View file

@ -1,4 +1,4 @@
FROM moleculacorp/nodejs:latest as build
FROM ghcr.io/featurebasedb/nodejs:0.0.1 as build
# make sure that your docker settings allow for at least like 4gb of ram, it
# takes a lot to build this
WORKDIR /lattice

View file

@ -39,9 +39,9 @@
"devDependencies": {
"@types/d3-array": "^2.0.0",
"@types/jest": "^26.0.4",
"@types/react": "^16.9.41",
"@types/react": "^17.0.0",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.8",
"@types/react-dom": "^17.0.0",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.5",
"jest-sonar-reporter": "^2.0.0",
@ -50,6 +50,9 @@
"tslint": "^6.1.2",
"typescript": "^4.2.2"
},
"resolutions": {
"@types/react": "^17.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",