Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -13,6 +13,9 @@ COPY package.json yarn.lock ./
|
|
13 |
# Install dependencies using npm with legacy peer dependencies
|
14 |
RUN npm install --legacy-peer-deps
|
15 |
|
|
|
|
|
|
|
16 |
# Build the project
|
17 |
RUN npm run build
|
18 |
|
|
|
13 |
# Install dependencies using npm with legacy peer dependencies
|
14 |
RUN npm install --legacy-peer-deps
|
15 |
|
16 |
+
# Install crypto-browserify
|
17 |
+
RUN npm install crypto-browserify
|
18 |
+
|
19 |
# Build the project
|
20 |
RUN npm run build
|
21 |
|