Spaces:
Running
Running
Update Dockerfile to use npm install instead of npm ci
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -4,7 +4,7 @@ WORKDIR /app/frontend
|
|
| 4 |
|
| 5 |
# Copy package files and install dependencies
|
| 6 |
COPY algospaced-ui/package*.json ./
|
| 7 |
-
RUN npm
|
| 8 |
|
| 9 |
# Copy the rest of the frontend source code
|
| 10 |
COPY algospaced-ui/ ./
|
|
|
|
| 4 |
|
| 5 |
# Copy package files and install dependencies
|
| 6 |
COPY algospaced-ui/package*.json ./
|
| 7 |
+
RUN npm install
|
| 8 |
|
| 9 |
# Copy the rest of the frontend source code
|
| 10 |
COPY algospaced-ui/ ./
|