Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -12,6 +12,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 12 |
COPY package.json yarn.lock* ./
|
| 13 |
COPY requirements.txt ./
|
| 14 |
COPY App.js App.css index.js server.py ./
|
|
|
|
|
|
|
| 15 |
|
| 16 |
# Install Python dependencies
|
| 17 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 12 |
COPY package.json yarn.lock* ./
|
| 13 |
COPY requirements.txt ./
|
| 14 |
COPY App.js App.css index.js server.py ./
|
| 15 |
+
# Copy CRACO config
|
| 16 |
+
COPY craco.config.js ./
|
| 17 |
|
| 18 |
# Install Python dependencies
|
| 19 |
RUN pip install --no-cache-dir -r requirements.txt
|