release: dont use absolute path to hugo binary

Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
David Karlsson 2023-08-22 21:51:03 +02:00
Родитель f0eed66f76
Коммит 0609289f6e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -24,7 +24,7 @@ FROM build-base as build
ARG HUGO_ENV
ARG DOCS_URL
COPY . .
RUN /bin/hugo --gc --minify -d /out -e $HUGO_ENV -b $DOCS_URL
RUN hugo --gc --minify -d /out -e $HUGO_ENV -b $DOCS_URL
FROM scratch as release
COPY --from=build /out /