mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 16:02:26 +08:00
10 lines
136 B
Docker
10 lines
136 B
Docker
FROM ubuntu:18.04
|
|
|
|
EXPOSE 8080/tcp
|
|
|
|
WORKDIR /dispatch
|
|
COPY ./bin/dispatch ./dispatch
|
|
RUN chmod +x ./dispatch
|
|
|
|
ENTRYPOINT ["./dispatch"]
|