Skip to content

Commit 5b250b7

Browse files
authored
Refactor SignallingWebServer to a single docker file (EpicGames#337) for UE5.3 (EpicGames#339)
1 parent 5fcd536 commit 5b250b7

File tree

4 files changed

+14
-42
lines changed

4 files changed

+14
-42
lines changed

SignallingWebServer/Dockerfile

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,30 @@
11
# Use the current Long Term Support (LTS) version of Node.js
22
FROM node:lts
3-
43
# Copy the signalling server and frontend source code from the build context
54
COPY /SignallingWebServer /SignallingWebServer
65
COPY /Frontend /Frontend
7-
86
# Install the dependencies for the signalling server and build the frontend
97
RUN SignallingWebServer/platform_scripts/bash/setup.sh --build
10-
118
# Expose TCP ports 80 and 443 for player WebSocket connections and web server HTTP(S) access
129
EXPOSE 80
1310
EXPOSE 443
1411

1512
# Expose TCP port 8888 for streamer WebSocket connections
1613
EXPOSE 8888
14+
EXPOSE 8888/udp
1715

1816
# Expose TCP port 8889 for connections from the SFU
1917
EXPOSE 8889
2018

19+
# Expose TCP port 19302 for connections to Google's stun server
20+
EXPOSE 19302
21+
2122
# Expose TCP port 9999 for connections from the Matchmaker
2223
EXPOSE 9999
2324

25+
# Expose TCP port 19302 for connections from coturn
26+
EXPOSE 3478
27+
EXPOSE 3479
28+
2429
# Set the signalling server as the container's entrypoint
25-
ENTRYPOINT ["/usr/local/bin/node", "/SignallingWebServer/cirrus.js"]
30+
ENTRYPOINT ["/usr/local/bin/node", "/SignallingWebServer/cirrus.js"]

SignallingWebServer/platform_scripts/bash/Dockerfile

-35
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/bin/bash
22
# Copyright Epic Games, Inc. All Rights Reserved.
3+
BASH_LOCATION=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
4+
5+
pushd "${BASH_LOCATION}" > /dev/null
36

47
# When run from SignallingWebServer/platform_scripts/bash, this uses the SignallingWebServer directory
58
# as the build context so the Cirrus files can be successfully copied into the container image
6-
docker build --network=host -t 'cirrus-webserver:latest' -f ./Dockerfile ../..
7-
9+
docker build --network=host -t 'cirrus-webserver:latest' -f "${BASH_LOCATION}/../../Dockerfile" "${BASH_LOCATION}/../../.."

SignallingWebServer/platform_scripts/bash/docker-start-cirrus.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ else
2727
peerConnectionOptions="{\""iceServers\"":[{\""urls\"":[\""stun:"${stunserver}"\""]}]}"
2828
fi
2929

30-
docker run --name cirrus_latest --network host --rm --entrypoint /usr/local/bin/node cirrus-webserver /opt/SignallingWebServer/cirrus.js --peerConnectionOptions="${peerConnectionOptions}" --publicIp="${publicip}"
30+
docker run --name cirrus_latest --network host --rm --entrypoint /usr/local/bin/node cirrus-webserver /SignallingWebServer/cirrus.js --peerConnectionOptions="${peerConnectionOptions}" --publicIp="${publicip}"
3131

0 commit comments

Comments
 (0)