summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-17 15:25:52 +0300
committerPaul Buetow <paul@buetow.org>2026-05-17 15:25:52 +0300
commit914bd7cd6aa14e839332a98d91c30b19865b0cf2 (patch)
tree02b11537237a204048589e14ed24938b805e42f7 /Dockerfile
parent3b24f0e1be832584d6550e8cc3e5d24329f66f90 (diff)
Restructure repo: move Go server into player-server/
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile37
1 files changed, 0 insertions, 37 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 6f30192..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,37 +0,0 @@
-# syntax=docker/dockerfile:1
-
-# ---- Builder stage ----
-FROM golang:1.25-alpine AS builder
-
-WORKDIR /build
-
-# Install git for go mod download if needed.
-RUN apk add --no-cache git
-
-COPY go.mod go.sum ./
-RUN go mod download
-
-COPY . .
-
-# Build the binary.
-RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o player ./cmd/player
-
-# ---- Runtime stage ----
-FROM alpine:3.21
-
-# Install ffmpeg and ffprobe.
-RUN apk add --no-cache ffmpeg
-
-# Create a non-root user (nobody already exists as 65534).
-USER 65534:65534
-
-WORKDIR /app
-
-# Copy the binary and static assets from the builder.
-COPY --from=builder --chown=65534:65534 /build/player /app/player
-COPY --from=builder --chown=65534:65534 /build/web /app/web
-
-# Expose the default HTTP port.
-EXPOSE 8080
-
-ENTRYPOINT ["/app/player"]