Skip to content

Instantly share code, notes, and snippets.

@Schtee
Created January 11, 2022 20:30
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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