diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2025-05-18 02:51:36 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2025-05-18 02:57:39 +0200 |
| commit | dab1e12204c0d2c4550dad415fa020342eb5c967 (patch) | |
| tree | 9c6eea5fd38d0029299b9491369640e933da8348 | |
| parent | b6177156c90dc76a421693312ee483996283a2ae (diff) | |
WIP gmidgmid
| -rw-r--r-- | gmid/2.1.1/Dockerfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gmid/2.1.1/Dockerfile b/gmid/2.1.1/Dockerfile new file mode 100644 index 0000000..13fa316 --- /dev/null +++ b/gmid/2.1.1/Dockerfile @@ -0,0 +1,14 @@ +FROM alpine +RUN apk update && apk add \ + byacc \ + git \ + make \ + gcc \ + musl-dev +COPY --from=libopenssl:3.3.1-minimal /opt/spm/openssl-3.3.1/ /usr/local/ +RUN git clone --depth 1 -b 2.1.1 https://git.omarpolo.com/gmid.git \ + /opt/spm/gmid-2.1.1 +WORKDIR /opt/spm/gmid-2.1.1 +RUN LDFLAGS=-static ./configure +RUN make -j$(nproc --all) +RUN strip gmid |
