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 .