initial commit

This commit is contained in:
2022-07-09 03:19:07 +00:00
commit 7cd89381f9
2 changed files with 21 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# 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" ]

4
README.md Normal file
View File

@@ -0,0 +1,4 @@
## Dockerfile for BunnyBot
This is a Dockerfile to containerize my Discord bot (https://git.dtam.pw/daniel/GoBunnyBot)