Community maintained Docker config for the spindle server

adjust port, make it variable

keea.dog 7e9dc9ad 52205719

verified
Changed files
+2 -1
+2 -1
Dockerfile
···
COPY --from=builder /usr/bin/spindle /usr/bin
RUN mkdir /app && chown -R spindle:spindle /app
+
ARG 6555
HEALTHCHECK --interval=60s --timeout=30s --start-period=5s --retries=3 \
-
cmd curl -f http://localhost:5555 || exit 1
+
cmd curl -f http://localhost:$PORT || exit 1
ENTRYPOINT ["/init"]