Spaces:
Running
Running
Commit
·
3368936
1
Parent(s):
d2808ac
- Dockerfile +5 -0
Dockerfile
CHANGED
@@ -47,6 +47,11 @@ RUN --mount=type=secret,id=GITHUB_TOKEN,mode=0444,required=true \
|
|
47 |
git clone https://$(cat /run/secrets/GITHUB_TOKEN)@github.com/Mungert69/NetworkMonitorAgent.git /home/user/code/NetworkMonitorAgent && \
|
48 |
git clone https://$(cat /run/secrets/GITHUB_TOKEN)@github.com/Mungert69/NetworkMonitorBlazor.git /home/user/code/NetworkMonitorBlazor
|
49 |
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
# Copy files into the container as the non-root user
|
52 |
COPY --chown=user:user appsettings.json /home/user/code/app/appsettings.json
|
|
|
47 |
git clone https://$(cat /run/secrets/GITHUB_TOKEN)@github.com/Mungert69/NetworkMonitorAgent.git /home/user/code/NetworkMonitorAgent && \
|
48 |
git clone https://$(cat /run/secrets/GITHUB_TOKEN)@github.com/Mungert69/NetworkMonitorBlazor.git /home/user/code/NetworkMonitorBlazor
|
49 |
|
50 |
+
# Debug: List all files in NetworkMonitorAgent
|
51 |
+
RUN ls -la /home/user/code/NetworkMonitorAgent/
|
52 |
+
|
53 |
+
# Debug: Check if Components exists
|
54 |
+
RUN test -d /home/user/code/NetworkMonitorAgent/Components && echo "Components found!" || echo "Components MISSING"
|
55 |
|
56 |
# Copy files into the container as the non-root user
|
57 |
COPY --chown=user:user appsettings.json /home/user/code/app/appsettings.json
|