diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-05-14 17:40:36 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-05-14 17:40:36 -0500 |
| commit | afca82bbf549ac0bb0af39ee4152ac06b31acaaa (patch) | |
| tree | a9ad3d49e97f5cd3afa8186b21dd76893f0ca64d /Dockerfile | |
| parent | 3b246c066f00a8820231d25519109e77d35edd23 (diff) | |
| download | embedtube-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-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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"] |
