mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
fix: 🔧 Add missing libpq5 lib to DH node Docker images (#231)
This commit is contained in:
parent
750e8f391c
commit
3e07decea3
2 changed files with 3 additions and 1 deletions
|
|
@ -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 && \
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue