fix(gmnitohtml): wrong path in builder

This commit is contained in:
valvin 2022-10-06 22:20:58 +02:00
parent 30e02c1f56
commit 3856f9760b
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ ENV GMNITOHTML_VER 0.1.2
RUN apk add make RUN apk add make
RUN wget -O /tmp/gmnitohtml.tar.gz https://git.sr.ht/~adnano/gmnitohtml/archive/${GMNITOHTML_VER}.tar.gz \ RUN wget -O /tmp/gmnitohtml.tar.gz https://git.sr.ht/~adnano/gmnitohtml/archive/${GMNITOHTML_VER}.tar.gz \
&& tar -xvzf /tmp/gmnitohtml.tar.gz && cd gmnitohtml-${GMNITOHTML_VER} \ && tar -xvzf /tmp/gmnitohtml.tar.gz && cd gmnitohtml-${GMNITOHTML_VER} \
&& make gmnitohtml && make gmnitohtml && cp ./gmnitohtml /usr/local/bin/gmnitohtml
FROM alpine:3.16 as build_agate FROM alpine:3.16 as build_agate
@ -28,7 +28,7 @@ ENV GEMINI_KILN_SRC .
RUN apk --no-cache add openssl libgcc git kiln RUN apk --no-cache add openssl libgcc git kiln
RUN mkdir /app RUN mkdir /app
COPY --from=build_agate /root/.cargo/bin/agate /app/agate COPY --from=build_agate /root/.cargo/bin/agate /app/agate
COPY --from=build_gmnitohtml /go/gmnitohtml/gmnitohtml /usr/local/bin/gmnitohtml COPY --from=build_gmnitohtml /usr/local/bin/gmnitohtml /usr/local/bin/gmnitohtml
COPY entrypoint.sh /app/entrypoint.sh COPY entrypoint.sh /app/entrypoint.sh
EXPOSE 1965/tcp EXPOSE 1965/tcp