Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.

Commit 9aeea34

Browse files
committed
docker: add libssl3 as runtime dep
1 parent cb9631e commit 9aeea34

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Dockerfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ RUN adduser \
1414
--uid "${UID}" \
1515
"${USER}"
1616

17-
RUN apt-get update \
18-
&& apt-get install -y pkg-config libssl-dev
17+
RUN apt-get update && apt-get install -y --no-install-recommends \
18+
pkg-config \
19+
libssl-dev \
20+
&& rm -rf /var/lib/apt/lists/*
1921

2022
RUN cargo new --bin jitsi-openid
2123

@@ -38,6 +40,10 @@ EXPOSE 3000
3840
COPY --from=builder /etc/passwd /etc/passwd
3941
COPY --from=builder /etc/group /etc/group
4042

43+
RUN apt-get update && apt-get install -y --no-install-recommends \
44+
libssl3 \
45+
&& rm -rf /var/lib/apt/lists/*
46+
4147
WORKDIR /jitsi-openid
4248

4349
COPY --from=builder /jitsi-openid/target/release/jitsi-openid ./jitsi-openid

0 commit comments

Comments
 (0)