From 3f83860de7001522e614951e959766dba7db37bf Mon Sep 17 00:00:00 2001 From: Tamas Levai Date: Sat, 18 Nov 2023 11:25:55 +0100 Subject: [PATCH] Remove extra comment --- examples/turn-server/simple/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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