Skip to content

Commit

Permalink
fix(Dockerfile): remove hardcoded TARGETARCH variable for better arch…
Browse files Browse the repository at this point in the history
…itecture support
  • Loading branch information
goniszewski committed Feb 21, 2025
1 parent eac18c7 commit 9a35b75
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 @@ -11,8 +11,8 @@ RUN apt-get update && \

RUN mkdir -p /app/data

ARG TARGETARCH
ARG S6_OVERLAY_VERSION=3.1.6.2
ARG TARGETARCH=x86_64
ADD https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz /tmp
ADD https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${TARGETARCH}.tar.xz /tmp
RUN tar -C / -Jxpf /tmp/s6-overlay-noarch.tar.xz && \
Expand Down

0 comments on commit 9a35b75

Please sign in to comment.