aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-05-14 17:40:36 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-05-14 17:40:36 -0500
commitafca82bbf549ac0bb0af39ee4152ac06b31acaaa (patch)
treea9ad3d49e97f5cd3afa8186b21dd76893f0ca64d /Dockerfile
parent3b246c066f00a8820231d25519109e77d35edd23 (diff)
downloadembedtube-afca82bbf549ac0bb0af39ee4152ac06b31acaaa.tar.xz
embedtube-afca82bbf549ac0bb0af39ee4152ac06b31acaaa.zip
rename project to embedtube and revise readme.md. add btc donation link
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
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"]