You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
394 B
Docker
16 lines
394 B
Docker
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
|