Fix issues, add .dockerignore
Some checks failed
CI Code / Linux (ubuntu) (pull_request) Failing after 7s
CI Code / Check spelling (pull_request) Successful in 13s
CI Code / Check coding style (pull_request) Successful in 23s
Publish Docker image / Push Docker image to Docker Hub (push) Failing after 3m35s
CI Code / Linux (debian) (pull_request) Failing after 4m7s
CI Code / Linux (arch) (pull_request) Failing after 7m1s
CI Code / Code Coverage (pull_request) Failing after 7m12s

This commit is contained in:
2026-07-07 13:01:37 +00:00
parent 2bad80b015
commit 3dc5f4df16
3 changed files with 46 additions and 7 deletions

View File

@@ -79,6 +79,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libreadline8t64 \
libnotify4 \
python3 \
libpython3.14 \
libgpgme45 \
libotr5t64 \
libgtk-3-0t64 \
@@ -94,6 +95,12 @@ COPY --from=builder /usr/local/bin/profanity /usr/local/bin/profanity
COPY --from=builder /usr/local/lib/libprofanity* /usr/local/lib/
COPY --from=builder /usr/local/include/profapi.h /usr/local/include/
COPY --from=builder /usr/local/share/profanity /usr/local/share/profanity
COPY --from=builder /usr/lib/libstrophe.so* /usr/lib/
COPY --from=builder /usr/local/lib/libstrophe.so* /usr/local/lib/
RUN ldconfig
RUN ldd /usr/local/bin/profanity | grep 'not found' && exit 1 || true
RUN mkdir -p /root/.config/profanity