diff --git a/Dockerfile b/Dockerfile index fc413f1..bffd41e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build WORKDIR /App COPY . ./ diff --git a/Engine b/Engine index 913af2a..499f875 160000 --- a/Engine +++ b/Engine @@ -1 +1 @@ -Subproject commit 913af2a4a4cb01908e9d46507a42892e6adf3741 +Subproject commit 499f87590335238a0c8b04a29ccd825dcfd55735 diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..ca92f61 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,14 @@ +version: "3.9" + +services: + pong-server: + build: + context: . + dockerfile: Dockerfile + container_name: pong-server + restart: unless-stopped + network_mode: host + environment: + PORT: 8888 + ports: + - 8888:8888