update tar commands
Some checks failed
Build And Publish Docker / build (0.127.0, 22) (push) Failing after 2m0s
Some checks failed
Build And Publish Docker / build (0.127.0, 22) (push) Failing after 2m0s
This commit is contained in:
parent
a87bc23800
commit
5ba1f61424
1 changed files with 3 additions and 3 deletions
|
@ -7,12 +7,12 @@ RUN apk add --update --no-cache xz libssl3 ca-certificates openssl-dev curl ninj
|
||||||
WORKDIR /tmp
|
WORKDIR /tmp
|
||||||
|
|
||||||
RUN curl -sL -o hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz && \
|
RUN curl -sL -o hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz && \
|
||||||
tar -xf "hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz" && \
|
tar -xvzf "hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz" && \
|
||||||
cp ./hugo /usr/bin/hugo && \
|
cp ./hugo /usr/bin/hugo && \
|
||||||
hugo version
|
hugo version
|
||||||
|
|
||||||
RUN curl -sL -o node-v${NODE_VERSION}.tar.xz "https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}.tar.xz" && \
|
RUN curl -sL -o node-v${NODE_VERSION}.tar.xz https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}.tar.xz && \
|
||||||
tar -xf "node-v${NODE_VERSION}.tar.xz" && \
|
tar -xvJf "node-v${NODE_VERSION}.tar.xz" && \
|
||||||
cd node-v${NODE_VERSION} && \
|
cd node-v${NODE_VERSION} && \
|
||||||
./configure --prefix=/usr \
|
./configure --prefix=/usr \
|
||||||
--shared-brotli \
|
--shared-brotli \
|
||||||
|
|
Loading…
Add table
Reference in a new issue