Import project backup into new git repo
This commit is contained in:
commit
4ac3625f45
15 changed files with 1340 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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
|
Reference in a new issue