feat: hf space corr-steer
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -42,6 +42,12 @@ COPY --chown=user features/ ./features/
|
|
42 |
# Copy frontend files
|
43 |
COPY --chown=user demo ./demo
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
# Install frontend dependencies and build
|
46 |
WORKDIR $HOME/app/demo
|
47 |
RUN pnpm install
|
|
|
42 |
# Copy frontend files
|
43 |
COPY --chown=user demo ./demo
|
44 |
|
45 |
+
# Debug: Check what was copied
|
46 |
+
RUN echo "=== Contents of demo directory after copy ==="
|
47 |
+
RUN ls -la demo/
|
48 |
+
RUN echo "=== Check if package.json exists ==="
|
49 |
+
RUN test -f demo/package.json && echo "package.json exists" || echo "package.json NOT found"
|
50 |
+
|
51 |
# Install frontend dependencies and build
|
52 |
WORKDIR $HOME/app/demo
|
53 |
RUN pnpm install
|