kiln-builder/Dockerfile
Morgan McMillian c451d1148d
Some checks reported errors
dreamfall/kiln-builder/pipeline/head This commit looks good
thrrgilag/kiln-builder/pipeline/head Something is wrong with the build of this commit
initial commit
2023-02-09 16:15:46 -08:00

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