From f976ef71411c1ec71f79474e6e72c2fc3567f0f4 Mon Sep 17 00:00:00 2001 From: Salem Yaslem Date: Fri, 30 Aug 2024 02:06:14 +0300 Subject: [PATCH] add Minecraft server port --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index edd480f..26545b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,11 @@ COPY . ./ # Build the application RUN cargo build --release -# Expose ports 443 and 80 -EXPOSE 443 80 +# Expose ports 80, 443 and 25565 +EXPOSE 80 443 25565 + +# Fix colors +ENV TERM=xterm-256color # Run the application CMD ["/app/target/release/bridge46"] \ No newline at end of file