From 065c87fc3bb1c58a511ba299e8bc0dc9239f7260 Mon Sep 17 00:00:00 2001 From: cryptosharks131 Date: Mon, 23 Sep 2024 22:12:35 -0400 Subject: [PATCH] fix Dockerfile grpcio build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ea4c9ff9..ff62af61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3-alpine ENV PYTHONUNBUFFERED 1 -RUN apk add git && git clone https://github.com/cryptosharks131/lndg /app +RUN apk add git g++ linux-headers && git clone https://github.com/cryptosharks131/lndg /app WORKDIR /app RUN git checkout "master" RUN pip install -r requirements.txt