Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
disable optional extras and add hugo
Browse files Browse the repository at this point in the history
  • Loading branch information
usrbinkat committed Nov 16, 2023
1 parent 9a9583d commit 192e8de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ RUN set -ex \
# Install hugo
EXPOSE 1313
RUN set -ex \
&& export arch=$(uname -m | awk '{ if ($1 == "x86_64") print "x64"; else if ($1 == "aarch64" || $1 == "arm64") print "arm64"; else print "unknown" }') \
&& export arch=$(uname -m | awk '{ if ($1 == "x86_64") print "amd64"; else if ($1 == "aarch64" || $1 == "arm64") print "arm64"; else print "unknown" }') \
&& export urlHugoRelease="https://api.github.com/repos/gohugoio/hugo/releases/latest" \
&& export urlHugoVersion=$(curl -s ${urlHugoRelease} | awk -F '["v,]' '/tag_name/{print $5}') \
&& export urlHugoBase="https://github.com/gohugoio/hugo/releases/download" \
Expand Down

0 comments on commit 192e8de

Please sign in to comment.