feat: Made gateway iam and setup directories configurable from environment variables in docker images

This commit is contained in:
jonaustin09
2023-12-06 10:08:06 -05:00
parent 452152ad11
commit 32d7ada232
4 changed files with 18 additions and 4 deletions
+5 -1
View File
@@ -7,7 +7,11 @@ RUN go mod download
COPY ./ ./
RUN mkdir /tmp/vgw
ARG IAM_DIR=/tmp/vgw
ARG SETUP_DIR=/tmp/vgw
RUN mkdir -p $IAM_DIR
RUN mkdir -p $SETUP_DIR
RUN go get github.com/githubnemo/CompileDaemon
RUN go install github.com/githubnemo/CompileDaemon