Import project backup into new git repo

This commit is contained in:
Victor Lacasse-Beaudoin 2023-02-17 15:37:36 -05:00
commit 4ac3625f45
15 changed files with 1340 additions and 0 deletions

15
Dockerfile Normal file
View file

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