gmnisrv Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:latest | |
RUN apk add git openssl-dev build-base mailcap | |
RUN git clone https://git.sr.ht/~sircmpwn/scdoc | |
WORKDIR scdoc | |
RUN make -j4 | |
RUN make install | |
WORKDIR / | |
RUN git clone https://git.sr.ht/~sircmpwn/gmnisrv | |
WORKDIR gmnisrv/build | |
RUN ../configure --prefix=/usr | |
RUN make -j4 | |
RUN make install | |
WORKDIR / | |
EXPOSE 1965 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment