Skip to content

Commit

Permalink
Remove debug echos
Browse files Browse the repository at this point in the history
  • Loading branch information
carlreid committed Feb 12, 2025
1 parent 4222594 commit c949304
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions Dockerfile.sm.template
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,8 @@ ARG BUILDPLATFORM
ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
WORKDIR /src

RUN echo "Listing files in /src BEFORE COPY:" && ls -la /src || true

# Test: Copy the whole source directory
COPY . .

RUN echo "Listing files in /src AFTER COPY:" && ls -la /src || true


RUN echo "Checking if /src/StreamMaster.WebUI exists:" && ls -la /src/ || true
RUN echo "Listing files in /src/StreamMaster.WebUI/lib:" && ls -la /src/StreamMaster.WebUI/lib || true
RUN echo "Listing files in /src/StreamMaster.WebUI/lib/smAPI:" && ls -la /src/StreamMaster.WebUI/lib/smAPI || true

RUN echo "Checking the version of node" && node -v
RUN echo "Checking the version of npm" && npm -v

RUN echo "Creating a test directory" && mkdir /src/testdir || true
RUN echo "Checking if /src/testdir exists:" && ls -la /src || true

# Build UI
WORKDIR /src/StreamMaster.WebUI
RUN echo "Building frontend..." && \
Expand Down

0 comments on commit c949304

Please sign in to comment.