mirror of
https://github.com/stryan/mumble-discord-bridge.git
synced 2024-11-16 20:15:40 -05:00
27f8e5ba65
trim white space from string env vars
27 lines
798 B
Docker
27 lines
798 B
Docker
# syntax=docker/dockerfile:experimental
|
|
|
|
# Stage 1
|
|
|
|
FROM golang:1.16 as builder
|
|
WORKDIR /go/src/app
|
|
COPY . .
|
|
RUN curl -sfL https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sh
|
|
RUN apt update && apt install -y libopus-dev
|
|
RUN ./bin/goreleaser build --skip-validate
|
|
|
|
# Stage 2
|
|
|
|
FROM alpine:latest as final
|
|
WORKDIR /opt/
|
|
RUN apk add opus
|
|
RUN mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2
|
|
COPY --from=builder /go/src/app/dist/mumble-discord-bridge_linux_amd64/mumble-discord-bridge .
|
|
|
|
# FROM ubuntu:latest as final
|
|
# WORKDIR /opt/
|
|
# RUN apt update && apt install -y libopus0 ca-certificates && apt clean
|
|
# COPY --from=builder /go/src/app/dist/mumble-discord-bridge_linux_amd64/mumble-discord-bridge .
|
|
|
|
# Entry Point
|
|
CMD ["/opt/mumble-discord-bridge"]
|