From a79b32615c471fb0b5503131eaab603554e2aa4d Mon Sep 17 00:00:00 2001 From: studiokaiji Date: Sun, 30 Nov 2025 20:03:14 +0900 Subject: [PATCH] Remove entrypoint script copy from Dockerfile --- hostr/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/hostr/Dockerfile b/hostr/Dockerfile index 36965fa..96ad8fe 100644 --- a/hostr/Dockerfile +++ b/hostr/Dockerfile @@ -39,9 +39,6 @@ WORKDIR /app # Copy the binary from builder COPY --from=builder /app/hostr . -# Copy entrypoint script -COPY docker-entrypoint.sh /app/docker-entrypoint.sh - # Create directories for data and config RUN mkdir -p /app/data /home/hostr/.nostr-webhost && \ chmod +x /app/docker-entrypoint.sh && \