Import project backup into new git repo

This commit is contained in:
Victor Lacasse-Beaudoin 2023-02-17 15:43:23 -05:00
commit 9606d8c2df
20 changed files with 1430 additions and 0 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM golang:1.16
LABEL author="Victor Lacasse-Beaudoin <vlbeaudoin@agecem.org>"
LABEL license="MIT"
LABEL licensee="AGECEM"
LABEL repo="https://git.agecem.com/agecem/babillard"
WORKDIR /go/src/app
COPY . .
RUN go get -d -v . && \
go install -v .
CMD babillard