Skip to content

Instantly share code, notes, and snippets.

@Schtee
Created January 11, 2022 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Schtee/846b12a6c2c3dce21429c33af33393b6 to your computer and use it in GitHub Desktop.
Save Schtee/846b12a6c2c3dce21429c33af33393b6 to your computer and use it in GitHub Desktop.
gmnisrv Dockerfile
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