chore: updated docker configuration

This commit is contained in:
2026-02-02 20:11:49 +03:00
parent 3e92b9cb1c
commit 5cb259dba1
3 changed files with 16 additions and 2 deletions

View File

@@ -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 WORKDIR /App
COPY . ./ COPY . ./

2
Engine

Submodule Engine updated: 913af2a4a4...499f875903

14
docker-compose.yaml Normal file
View File

@@ -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