Files
KohakuHub/docker/lakefs/Dockerfile
2026-01-22 23:29:24 +08:00

12 lines
371 B
Docker

FROM treeverse/lakefs:latest
USER root
RUN if command -v apk >/dev/null 2>&1; then \
apk add --no-cache postgresql-client; \
elif command -v apt-get >/dev/null 2>&1; then \
apt-get update && apt-get install -y postgresql-client && rm -rf /var/lib/apt/lists/*; \
else \
echo "No supported package manager for postgresql-client"; \
fi