Squashed into initial commit

This commit is contained in:
Victor Lacasse-Beaudoin 2023-03-06 14:01:18 -05:00
commit c74e093a3b
19 changed files with 1728 additions and 0 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM golang:1.19
LABEL author="Victor Lacasse-Beaudoin <vlbeaudoin@agecem.org>"
LABEL repo="https://git.agecem.com/agecem/bottin"
WORKDIR /go/src/app
COPY . .
ENV PATH=/go/src/app:$PATH
RUN go get -d -v . && \
go install -v .
CMD bottin -h