15 lines
250 B
Docker
15 lines
250 B
Docker
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
|