2021-10-23 19:51:48 +00:00
|
|
|
FROM golang:1.17.2
|
|
|
|
|
2021-10-24 07:23:28 +00:00
|
|
|
RUN curl -fsSL https://kumoly.io/attachments/a8b503db-8067-4323-9d1d-bc6e616af452 | tar -C /usr/local/bin/ -xz
|
2021-10-23 19:51:48 +00:00
|
|
|
|
|
|
|
WORKDIR /src
|
|
|
|
|
|
|
|
COPY main.go main.go
|
|
|
|
RUN touch shell.sh
|
|
|
|
|
|
|
|
CMD [ "configui", "-log", "configui.log", "-f","conf.json" ]
|