summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-04 08:46:40 +0300
committerPaul Buetow <paul@buetow.org>2026-05-04 08:46:40 +0300
commit2f00f28b329110d10004c5152243707308cab95c (patch)
tree7741b5947f6bf1f05320f3c5f99a243e4fbbb1c1 /Dockerfile
parenta1e4841504152af55d25a6b7a5c6c57a782d16b4 (diff)
task l: rename binary from mediaplayer to player
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index ead1183..6f30192 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -14,7 +14,7 @@ RUN go mod download
COPY . .
# Build the binary.
-RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o player ./cmd/mediaplayer
+RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o player ./cmd/player
# ---- Runtime stage ----
FROM alpine:3.21