Skip to content

Instantly share code, notes, and snippets.

@itsamirhn
Created July 2, 2025 23:07
Show Gist options
  • Save itsamirhn/c3b833ef769bdb98d3c17cb868affb8d to your computer and use it in GitHub Desktop.
Save itsamirhn/c3b833ef769bdb98d3c17cb868affb8d to your computer and use it in GitHub Desktop.
ecgen docker image
FROM debian:bullseye-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
build-essential \
git \
libpari-dev \
&& rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/J08nY/ecgen.git /opt/ecgen && \
cd /opt/ecgen && \
git submodule update --init && \
make
WORKDIR /opt/ecgen
ENTRYPOINT ["./ecgen"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment