[chore](docker): remove unused DTLS-related UDP port mapping

- Removed `443/udp` from `EXPOSE` in `Dockerfile.server`.
- Removed UDP port mapping for `443` in `docker-compose.yml`.
This commit is contained in:
dalbodeule
2025-12-11 17:00:36 +09:00
parent 1492a1a82c
commit d93440f4b3
2 changed files with 1 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ COPY --from=builder /out/hop-gate-server /app/hop-gate-server
COPY .env.example /app/.env.example
# 기본 포트 노출 (실제 포트는 .env / 설정에 따라 변경 가능)
EXPOSE 80 443/udp 443
EXPOSE 80 443
# 기본 실행 명령
ENTRYPOINT ["/app/hop-gate-server"]