summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannik <jannik@outlook.com>2021-10-03 14:57:12 +0200
committerJannik <jannik@outlook.com>2021-10-03 14:57:12 +0200
commitc148f57e732fe148672b7df82824f1ef8ed989a6 (patch)
treeaf20b2cb685f9ba0520d7da18616de7177a78654
parent3717a2ebeb90e6b16c109208a0a33f78fc95c8bd (diff)
:rocket: fix: split EXPOSE into multiple statementsfix/dockerfile-multiple-exposes
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 7966ada37..6a4404a26 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,7 @@
# Perform a build
FROM golang:alpine AS build
-EXPOSE 8080 1935
+EXPOSE 8080
+EXPOSE 1935
RUN mkdir /build
ADD . /build
WORKDIR /build