ytdl-web/Dockerfile

21 lines
317 B
Docker

FROM golang:1.20-alpine3.17 as builder
WORKDIR /usr/src/ytdl-web
COPY . .
RUN go mod download \
&& go build -o ytdl-web .
FROM alpine:3.17
WORKDIR /app
RUN apk add --no-cache yt-dlp==2023.03.04 ffmpeg==5.1.3
COPY --from=builder /usr/src/ytdl-web/ytdl-web ./ytdl-web
EXPOSE 8080
ENTRYPOINT [ "ytdl-web" ]