• Joined on 2024-07-14

stratify-worker (latest)

Published 2026-06-02 06:28:54 +00:00 by cam

Installation

docker pull gitty.camhome.net/cam/stratify-worker:latest
sha256:0a6f16415d4391ec86f03d669034922225ebb1eed48e889b8f062148afbb59e4

Image Layers

ARG RELEASE
ARG LAUNCHPAD_BUILD_ARCH
LABEL org.opencontainers.image.version=24.04
ADD file:46ac5b8ee4c64ad9ebe840abd5619f571a617ac19483764d47d0eeba7907934f in /
CMD ["/bin/bash"]
ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu74 libssl3t64 libstdc++6 tzdata tzdata-legacy && rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/sh -c groupadd --gid=$APP_UID app && useradd --no-log-init --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit
ENV DOTNET_VERSION=10.0.8
COPY /dotnet /usr/share/dotnet # buildkit
RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit
WORKDIR /app
COPY /app/publish . # buildkit
RUN /bin/sh -c printf '%s\n' '#!/bin/sh' 'set -e' 'for d in /app/files /app/backups /app/recordings; do' ' if [ -d "$d" ]; then' ' p="$d/.stratify-health-$$"' ' echo probe > "$p" && rm -f "$p" || { echo "unwritable: $d" >&2; exit 1; }' ' fi' 'done' 'exit 0' > /usr/local/bin/healthcheck.sh && chmod +x /usr/local/bin/healthcheck.sh # buildkit
HEALTHCHECK {Test:[CMD /usr/local/bin/healthcheck.sh] Interval:30s Timeout:5s StartPeriod:20s StartInterval:0s Retries:3}
ENTRYPOINT ["dotnet" "Stratify.Worker.dll"]

Labels

Key Value
org.opencontainers.image.version 24.04
Details
Container
2026-06-02 06:28:54 +00:00
114
OCI / Docker
linux/amd64
102 MiB
Versions (2) View all
ca4e54f-latest 2026-06-02
latest 2026-06-02