thibaud frere
commited on
Commit
·
e7463dd
1
Parent(s):
d912fc5
Add debug commands to check LFS files in Docker build
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -17,6 +17,10 @@ RUN git lfs pull
|
|
| 17 |
# Move to app directory for building
|
| 18 |
WORKDIR /workspace/app
|
| 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
# Install dependencies
|
| 21 |
RUN npm install
|
| 22 |
|
|
|
|
| 17 |
# Move to app directory for building
|
| 18 |
WORKDIR /workspace/app
|
| 19 |
|
| 20 |
+
# Debug: Check if LFS files are actually there
|
| 21 |
+
RUN ls -la src/content/assets/image/figures/ch1/ || echo "Directory not found"
|
| 22 |
+
RUN file src/content/assets/image/figures/ch1/ch1-lerobot-figure1.png || echo "File not found"
|
| 23 |
+
|
| 24 |
# Install dependencies
|
| 25 |
RUN npm install
|
| 26 |
|