Add 'secrets' command to startup script

This commit is contained in:
Vikram Rangnekar 2020-03-03 19:44:14 +05:30
parent 8b6c562ac1
commit 2b0a798faa
2 changed files with 11 additions and 5 deletions

View File

@ -11,7 +11,7 @@ RUN apk update && \
apk add --no-cache make && \ apk add --no-cache make && \
apk add --no-cache git && \ apk add --no-cache git && \
apk add --no-cache jq && \ apk add --no-cache jq && \
apk add --no-cache upx=3.95-r2 apk add --no-cache upx=3.96
RUN GO111MODULE=off go get -u github.com/rafaelsq/wtc RUN GO111MODULE=off go get -u github.com/rafaelsq/wtc
@ -27,9 +27,9 @@ COPY --from=react-build /web/build/ ./web/build/
RUN go mod vendor RUN go mod vendor
RUN make build RUN make build
# RUN echo "Compressing binary, will take a bit of time..." && \ RUN echo "Compressing binary, will take a bit of time..." && \
# upx --ultra-brute -qq super-graph && \ upx --ultra-brute -qq super-graph && \
# upx -t super-graph upx -t super-graph
# stage: 3 # stage: 3
FROM alpine:latest FROM alpine:latest

View File

@ -1,7 +1,13 @@
#!/bin/sh #!/bin/sh
if [ $1 = "secrets" ]
then
sops --config ./config "${@:2}"
exit 0
fi
if test -f "./config/$SECRETS_FILE" if test -f "./config/$SECRETS_FILE"
then then
./sops --config ./config exec-env "./config/$SECRETS_FILE" "$*" ./sops --config ./config exec-env "./config/$SECRETS_FILE" "$*"
else else
$@ $@
fi fi