Skip to content

Commit

Permalink
chore: remove hardcoded platform in inso Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
hexchain committed Jan 27, 2025
1 parent 2b54b3a commit c13a4cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/insomnia-inso/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY ./artifacts/inso-linux-*.tar.xz /tmp/inso.tar.xz
RUN apt-get update && apt-get install -y xz-utils && rm -rf /var/lib/apt/lists/*
RUN tar -C /usr/bin -xvf /tmp/inso.tar.xz

FROM --platform=linux/amd64 docker.io/ubuntu:22.04
FROM docker.io/ubuntu:22.04
COPY --from=fetch /usr/bin/inso /usr/bin/inso
RUN chmod +x /usr/bin/inso
RUN apt-get update && apt-get install -y libstdc++6 && rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit c13a4cf

Please sign in to comment.