Skip to content

Commit b0a3ced

Browse files
authored
Add sqlite3 and postgresql installation
Install sqlite3 and postgresql in the Dockerfile.
1 parent b7a3ac7 commit b0a3ced

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ FROM $BASE_TAG
8686
# so it uses apt
8787
ARG DEBIAN_FRONTEND=noninteractive
8888
RUN apt-get update -y \
89+
&& apt-get install -y --no-install-recommends \
90+
ca-certificates \
8991
&& apt-get install -y sqlite3 postgresql \
9092
&& rm -rf /var/lib/apt/lists/*
9193
WORKDIR /firefly
@@ -102,4 +104,4 @@ COPY --from=uidownloader /firefly/frontend /firefly/frontend
102104
COPY --from=sbom /sbom.spdx.json /sbom.spdx.json
103105
RUN ln -s /firefly/firefly /usr/bin/firefly
104106
USER 1001
105-
ENTRYPOINT [ "/usr/bin/firefly" ]
107+
ENTRYPOINT [ "/usr/bin/firefly" ]

0 commit comments

Comments
 (0)