diff --git a/examples/turn-server/simple/Dockerfile b/examples/turn-server/simple/Dockerfile index baf0f21e..bf6e2694 100644 --- a/examples/turn-server/simple/Dockerfile +++ b/examples/turn-server/simple/Dockerfile @@ -1,7 +1,6 @@ # SPDX-FileCopyrightText: 2023 The Pion community # SPDX-License-Identifier: MIT -##### builder FROM golang:alpine as builder ARG VERSION=master @@ -20,6 +19,7 @@ RUN go get -d -v ./... # Build static binary RUN CGO_ENABLED=0 go build -trimpath -ldflags="-w -s" -o turn-server main.go + ##### main FROM alpine