From afca82bbf549ac0bb0af39ee4152ac06b31acaaa Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Thu, 14 May 2026 17:40:36 -0500 Subject: rename project to embedtube and revise readme.md. add btc donation link --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index ce83df8..df2de42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,13 +11,13 @@ RUN go mod download COPY . . # Build the Go app -RUN go build -o mintube . +RUN go build -o embedtube . # Final lightweight image FROM alpine:latest WORKDIR /app -COPY --from=builder /app/mintube . +COPY --from=builder /app/embedtube . COPY --from=builder /app/README.md . COPY --from=builder /app/templates ./templates COPY --from=builder /app/static ./static @@ -26,4 +26,4 @@ COPY --from=builder /app/static ./static EXPOSE 8080 # Run the Go app -CMD ["./mintube"] +CMD ["./embedtube"] -- cgit v1.2.3