mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 14:42:26 +08:00
8 lines
104 B
Docker
8 lines
104 B
Docker
FROM ubuntu:18.04
|
|
|
|
WORKDIR /fight
|
|
COPY ./bin/fight ./fight
|
|
RUN chmod +x ./fight
|
|
|
|
ENTRYPOINT ["./fight"]
|