fix(hugo-adoc): add nodejs to the image
All checks were successful
multi-semantic-release / multi-semantic-release (push) Successful in 20s
All checks were successful
multi-semantic-release / multi-semantic-release (push) Successful in 20s
This commit is contained in:
parent
d347a17b75
commit
57db7cbbff
1 changed files with 7 additions and 1 deletions
|
@ -24,7 +24,13 @@ FROM asciidoctor/docker-asciidoctor:1.82
|
||||||
COPY --from=build /go/bin/hugo /usr/bin/hugo
|
COPY --from=build /go/bin/hugo /usr/bin/hugo
|
||||||
RUN gem install --no-document asciidoctor-html5s &&\
|
RUN gem install --no-document asciidoctor-html5s &&\
|
||||||
apk update &&\
|
apk update &&\
|
||||||
apk add --no-cache ca-certificates libc6-compat libstdc++ git &&\
|
apk add --no-cache \
|
||||||
|
ca-certificates \
|
||||||
|
git \
|
||||||
|
libc6-compat \
|
||||||
|
libstdc++ \
|
||||||
|
nodejs \
|
||||||
|
&&\
|
||||||
/usr/bin/hugo version &&\
|
/usr/bin/hugo version &&\
|
||||||
rm -rf /var/cache/apk/*
|
rm -rf /var/cache/apk/*
|
||||||
# Expose port for live server
|
# Expose port for live server
|
||||||
|
|
Loading…
Add table
Reference in a new issue