Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Sep 24, 2024
1 parent c2133c3 commit 1d030f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ RUN npm run build -- --native
FROM debian:bookworm-slim AS umbrelos
ENV NODE_ENV=production

ARG TARGETARCH
ARG VERSION_ARG="0.0"
ARG YQ_VERSION="v4.24.5"
ARG DEBCONF_NOWARNINGS="yes"
Expand All @@ -69,7 +70,7 @@ RUN set -eu \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& echo "$VERSION_ARG" > /run/version \
&& wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 \
&& curl -sLo /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_${TARGETARCH} \
&& chmod +x /usr/local/bin/yq

# Add Umbrel user
Expand Down

0 comments on commit 1d030f3

Please sign in to comment.