Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Fix cirrus Dockerfile #123

Merged
merged 1 commit into from
Feb 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion SignallingWebServer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ FROM node:lts

# Copy the signalling server source code from the build context
COPY . /opt/SignallingWebServer
COPY . /opt/Frontend

# Install the dependencies for the signalling server
WORKDIR /opt/SignallingWebServer
RUN npm install .
RUN ./platform_scripts/bash/setup.sh --build

# Expose TCP ports 80 and 443 for player WebSocket connections and web server HTTP(S) access
EXPOSE 80
Expand Down