Skip to content

Commit

Permalink
Fix archs for 0.x and 1.x containers as well
Browse files Browse the repository at this point in the history
For #3 and #7.
  • Loading branch information
gaborcsardi committed Dec 17, 2023
1 parent b09c635 commit d6aa93b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion containers/Dockerfile-0.x
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@ RUN apt-get update && \

WORKDIR /root

ENTRYPOINT [ "linux32" ]
COPY sarge-entrypoint.sh /usr/local/bin/entrypoint.sh
COPY inode64.so /usr/local/lib/inode64.so
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]

CMD [ "bash" ]
5 changes: 4 additions & 1 deletion containers/Dockerfile-1.x
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@ RUN apt-get update && \

WORKDIR /root

ENTRYPOINT [ "linux32" ]
COPY sarge-entrypoint.sh /usr/local/bin/entrypoint.sh
COPY inode64.so /usr/local/lib/inode64.so
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]

CMD [ "bash" ]

0 comments on commit d6aa93b

Please sign in to comment.