update dockerfile
Some checks failed
Build And Publish Docker / build (push) Has been cancelled

This commit is contained in:
brooke 2024-06-08 07:33:38 -04:00
parent 453de75345
commit 116019297b

View file

@ -32,6 +32,7 @@ FROM alpine:3.20
RUN apk add --update --no-cache \
c-ares \
git \
nghttp2 \
libcrypto3 \
icu-libs \
@ -43,7 +44,9 @@ RUN apk add --update --no-cache \
linux-headers \
rsync \
openssh \
npm \
libuv \
bash \
brotli \
&& rm -rf /var/cache/apk/*
COPY --from=build /usr/bin/hugo /usr/bin/hugo
@ -53,4 +56,4 @@ COPY --from=build /usr/include/node /usr/include/node
RUN mkdir /home/app
WORKDIR /home/app
ENTRYPOINT [ "/bin/sh" ]
ENTRYPOINT [ "/bin/bash" ]