| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=22.04 |
| ADD file:799f4e238d67485cc109d93512f4fe6f75bafc26a3476772191154125e52201d in / |
| CMD ["/bin/bash"] |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends curl ca-certificates && rm -rf /var/lib/apt/lists/* && useradd -u 1001 -U -M -s /usr/sbin/nologin app && mkdir -p /work && chown 1001:1001 /work # buildkit |
| WORKDIR /work/ |
| COPY --chown=1001:1001 build-output/*-runner /work/application # buildkit |
| COPY entrypoint.sh /entrypoint.sh # buildkit |
| RUN /bin/sh -c chmod 0755 /entrypoint.sh && chmod 775 /work /work/application && echo "securerandom.source=file:/dev/urandom" >> /work/application # buildkit |
| EXPOSE [8080/tcp] |
| ENTRYPOINT ["/entrypoint.sh"] |