From 2bae4f5312b3d1ff7ac520d6c6089e6f5a672d2b Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Fri, 15 Sep 2023 18:16:39 -0400 Subject: [PATCH] =?UTF-8?q?Update=20Dockerfile=20avec=20packages=20pr?= =?UTF-8?q?=C3=A9sents?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index b799bef..3e11ae5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,13 +6,15 @@ WORKDIR /go/src/app COPY go.mod go.sum main.go ./ +ADD apiclient/ apiclient/ +ADD apierror/ apierror/ +ADD apihandler/ apihandler/ +ADD apiresponse/ apiresponse/ ADD cmd/ cmd/ ADD config/ config/ -ADD data/ data/ -ADD handlers/ handlers/ -ADD models/ models/ -ADD responses/ responses/ -ADD templates/ templates/ +ADD dbclient/ dbclient/ +ADD webcontent/ webcontent/ +ADD webhandler/ webhandler/ RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o bottin-ag .