new gaypoints feature

This commit is contained in:
Watn3y 2023-03-18 23:50:42 +01:00
parent 69e93622b3
commit 6115e09602
10 changed files with 310 additions and 14 deletions

View file

@ -5,6 +5,7 @@ WORKDIR /tmp/build
#install update system and install packages
RUN apk update
RUN apk upgrade --available
RUN apk add alpine-sdk
#build bloaterbot
COPY . .
@ -12,6 +13,8 @@ RUN go mod download
RUN mkdir /app
ARG CGO_ENABLED=1
RUN go build -o /app/bloaterbot
WORKDIR /app