This repository has been archived on 2023-07-05. You can view files and clone it, but cannot push or open issues or pull requests.
clessy/Dockerfile.broker

9 lines
146 B
Docker

FROM golang:alpine
RUN apk add git
RUN go get -u git.fromouter.space/hamcha/tg/cmd/tg-broker
ENTRYPOINT [ "tg-broker" ]
EXPOSE 7313
EXPOSE 7314