Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -40,8 +40,8 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
40 |
# ============================== APP CODE ===============================
|
41 |
COPY . .
|
42 |
|
43 |
-
# Copy Angular build
|
44 |
-
COPY --from=angular-build /
|
45 |
|
46 |
# Create assets directory if it doesn't exist
|
47 |
RUN mkdir -p ./static/assets
|
|
|
40 |
# ============================== APP CODE ===============================
|
41 |
COPY . .
|
42 |
|
43 |
+
# Copy Angular build output
|
44 |
+
COPY --from=angular-build /app/dist/flare-ui ./static
|
45 |
|
46 |
# Create assets directory if it doesn't exist
|
47 |
RUN mkdir -p ./static/assets
|