From 333b217fbe0fda2a78972218ec341355cb86a888 Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 23 May 2024 15:10:44 -0400 Subject: [PATCH] tor-relay --- docker/tor-relay/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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