fix: 🔧 Add missing libpq5 lib to DH node Docker images (#231)

This commit is contained in:
Steve Degosserie 2025-10-13 23:25:34 +02:00 committed by GitHub
parent 750e8f391c
commit 3e07decea3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -43,6 +43,8 @@ FROM debian:stable-slim
LABEL maintainer="steve@moonsonglabs.com"
LABEL description="Production Binary for DataHaven Nodes"
RUN apt-get update && apt-get install -y libpq5
RUN useradd -m -u 1000 -U -s /bin/sh -d /datahaven datahaven && \
mkdir -p /datahaven/.local/share && \
mkdir /data && \

View file

@ -4,7 +4,7 @@
FROM debian:stable AS builder
RUN apt-get update && apt-get install -y ca-certificates && update-ca-certificates
RUN apt-get update && apt-get install -y libpq5 ca-certificates && update-ca-certificates
FROM debian:stable-slim
LABEL maintainer="steve@moonsonglabs.com"