Import project backup into new git repo
This commit is contained in:
commit
9606d8c2df
20 changed files with 1430 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue