Squashed into initial commit
This commit is contained in:
commit
c74e093a3b
19 changed files with 1728 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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
|
Reference in a new issue