mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 16:22:27 +08:00
11 lines
134 B
Docker
11 lines
134 B
Docker
FROM ubuntu:18.04
|
|
|
|
EXPOSE 22222/udp
|
|
EXPOSE 33333/tcp
|
|
|
|
WORKDIR /gate
|
|
COPY ./bin/gate ./gate
|
|
RUN chmod +x ./gate
|
|
|
|
ENTRYPOINT ["./gate"]
|