Created
January 11, 2022 20:30
-
-
Save Schtee/846b12a6c2c3dce21429c33af33393b6 to your computer and use it in GitHub Desktop.
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