| ADD file:ea912fd82699af55c10b8136b5dc4b5ce9d08b8a01f9c06f6783d94dc430335a in / |
| CMD ["bash"] |
| RUN /bin/sh -c set -ex; apt-get update && apt-get -y install --no-install-recommends ca-certificates curl && rm -rf /var/lib/apt/lists/* # buildkit |
| ARG UID=10001 |
| RUN |1 UID=10001 /bin/sh -c adduser --disabled-password --gecos "" --home "/nonexistent" --shell "/sbin/nologin" --no-create-home --uid "${UID}" appuser # buildkit |
| USER appuser |
| COPY /bin/server /bin/ # buildkit |
| EXPOSE map[3000/tcp:{}] |
| HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:3000/health || exit 1"] "5s" "3s" "0s" "0s" '\x03'} |
| CMD ["/bin/server"] |