16 lines
394 B
Text
16 lines
394 B
Text
|
FROM golang:latest
|
||
|
|
||
|
RUN apt-get update && apt-get install scdoc -y
|
||
|
|
||
|
WORKDIR /usr/src
|
||
|
|
||
|
RUN git clone https://git.sr.ht/~adnano/gmnitohtml
|
||
|
RUN git clone https://git.sr.ht/~adnano/mdtohtml
|
||
|
RUN git clone https://git.sr.ht/~adnano/kiln
|
||
|
|
||
|
RUN cd /usr/src/gmnitohtml && make && make install
|
||
|
RUN cd /usr/src/mdtohtml && make && make install
|
||
|
RUN cd /usr/src/kiln && make && make install
|
||
|
|
||
|
WORKDIR $GOPATH
|