diff --git a/docker/tor-relay/Dockerfile b/docker/tor-relay/Dockerfile
index 0d48241..c6289ee 100644
--- a/docker/tor-relay/Dockerfile
+++ b/docker/tor-relay/Dockerfile
@@ -57,14 +57,14 @@ RUN git clone https://git.torproject.org/tor.git && \
     ./configure --disable-asciidoc --enable-static-tor --with-libevent-dir=/tmp/static_tor/install --with-openssl-dir=/tmp/static_tor/install --with-zlib-dir=/tmp/static_tor/install && \
     make -j4
 
-# Debug step: List directory contents
-RUN ls -l /tmp/static_tor/tor/src/or
+# Debug step: List broader directory contents
+RUN ls -l /tmp/static_tor/tor/src
 RUN ls -l /tmp/static_tor/tor/src/app
 
 # Stage 2: Create the final image for testing with Alpine
 FROM alpine:latest
 
-# Copy the statically compiled Tor binary
+# Copy the statically compiled Tor binary (adjust path based on debug output)
 COPY --from=builder /tmp/static_tor/tor/src/app/tor /usr/local/bin/tor
 
 # Copy the torrc configuration file