| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:98599296b3845cfad0ddc91f054e32ed9bcdefd76dd7b6dcf64fa3e2d648d018 in / |
| CMD ["/bin/bash"] |
| LABEL authors=Bernardo Lopes |
| RUN /bin/sh -c apt update # buildkit |
| RUN /bin/sh -c apt upgrade -y # buildkit |
| RUN /bin/sh -c apt install unzip bash libicu-dev git -y # buildkit |
| WORKDIR /app |
| ADD https://github.com/ValveResourceFormat/ValveResourceFormat/releases/latest/download/cli-linux-x64.zip /tmp/Decompiler.zip # buildkit |
| RUN /bin/sh -c unzip /tmp/Decompiler.zip -d /app # buildkit |
| COPY entrypoint.sh /app # buildkit |
| RUN /bin/sh -c chmod +x Source2Viewer-CLI # buildkit |
| RUN /bin/sh -c chmod +x entrypoint.sh # buildkit |
| ENTRYPOINT ["/app/entrypoint.sh"] |