From 0bdc2e8ea872e39727faa0600e73fd371dabd929 Mon Sep 17 00:00:00 2001 From: Andrew Richardson Date: Fri, 8 Jul 2022 12:17:06 -0400 Subject: [PATCH] Add sqlite to Docker image It's helpful to have this handy when debugging database contents. Signed-off-by: Andrew Richardson --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 79af6ecf3b..5579bae5c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,7 +48,7 @@ COPY --from=firefly-builder /firefly/db ./db COPY --from=solidity-builder /firefly/solidity_firefly/build/contracts ./contracts COPY --from=fabric-builder /firefly/smart_contracts/fabric/firefly-go/firefly_fabric.tar.gz ./contracts/firefly_fabric.tar.gz RUN ln -s /firefly/firefly /usr/bin/firefly \ - && apk add --update --no-cache postgresql-client curl jq \ + && apk add --update --no-cache sqlite postgresql-client curl jq \ && curl -sL "https://github.com/golang-migrate/migrate/releases/download/$(curl -sL https://api.github.com/repos/golang-migrate/migrate/releases/latest | jq -r '.name')/migrate.linux-amd64.tar.gz" | tar xz \ && chmod +x ./migrate \ && mv ./migrate /usr/bin/migrate