| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=22.04 |
| ADD file:d025507456f1d7d19195885b1c02a346454d60c9348cbd3be92431f2d7e2666e in / |
| CMD ["/bin/bash"] |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt-get update && apt-get install -y git curl unzip && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c curl -fsSL https://bun.sh/install | bash # buildkit |
| ENV PATH=/root/.bun/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| COPY scripts/clone-repo.sh /usr/local/bin/clone-repo # buildkit |
| COPY scripts/run-command.sh /usr/local/bin/run-command # buildkit |
| RUN /bin/sh -c chmod +x /usr/local/bin/clone-repo /usr/local/bin/run-command # buildkit |
| COPY entrypoint.sh /entrypoint.sh # buildkit |
| RUN /bin/sh -c chmod +x /entrypoint.sh # buildkit |
| ENV WORK_DIR=/source |
| ENV PACKAGE_MANAGER=bun |
| ENTRYPOINT ["/entrypoint.sh"] |