# syntax=docker/dockerfile:1 FROM golang:latest WORKDIR /app RUN git clone https://github.com/omgdanieltam/BunnyBot.git . RUN go mod download COPY auth.json ./ RUN go build -o ./BunnyBot RUN chmod +x ./BunnyBot CMD [ "./BunnyBot" ]