8 lines
168 B
Text
8 lines
168 B
Text
|
FROM golang:alpine
|
||
|
RUN apk add git
|
||
|
|
||
|
ENV GOPROXY https://modules.fromouter.space
|
||
|
RUN go get git.fromouter.space/mcg/mlpdraftbot
|
||
|
|
||
|
ENTRYPOINT [ "mlpdraftbot" ]
|
||
|
EXPOSE 5749
|