Spaces:
Running
Running
misc: add logs for debugging
Browse files- Dockerfile +10 -0
Dockerfile
CHANGED
@@ -22,6 +22,16 @@ RUN npm install
|
|
22 |
# Copy the entire viewer directory
|
23 |
COPY --chown=user viewer/ .
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
# Ensure proper file permissions
|
26 |
RUN chmod -R 755 .
|
27 |
|
|
|
22 |
# Copy the entire viewer directory
|
23 |
COPY --chown=user viewer/ .
|
24 |
|
25 |
+
# Debug: List all files in the src/components directory
|
26 |
+
RUN echo "=== Listing src/components directory ===" && \
|
27 |
+
ls -la src/components && \
|
28 |
+
echo "=== Listing URDFViewer file specifically ===" && \
|
29 |
+
ls -la src/components/URDFViewer* && \
|
30 |
+
echo "=== Current working directory ===" && \
|
31 |
+
pwd && \
|
32 |
+
echo "=== Directory structure ===" && \
|
33 |
+
find . -type f -name "*.tsx" | sort
|
34 |
+
|
35 |
# Ensure proper file permissions
|
36 |
RUN chmod -R 755 .
|
37 |
|