feat: Adds todos, updates Dockerfile to use hpa as the entrypoint.

This commit is contained in:
2025-11-04 10:29:40 -05:00
parent 88a1f181cb
commit 9d8f3368ec
2 changed files with 9 additions and 6 deletions

View File

@@ -56,11 +56,6 @@ RUN export DEBIAN_FRONTEND=nointeractive DEBCONF_NOINTERACTIVE_SEEN=true && \
COPY --from=build /staging/hpa /usr/local/bin
# Setup completion
RUN mkdir /root/.bash_completion && \
echo "source /root/.bash_completion/hpa.bash" >>/root/.bashrc && \
/usr/local/bin/hpa --generate-completion-script bash >/root/.bash_completion/hpa.bash
# Setup volumes
RUN mkdir /config && \
mkdir /consults && \
@@ -72,4 +67,5 @@ RUN mkdir /config && \
VOLUME /config /consults /playbook /template
CMD ["/bin/bash", "-xc", "/usr/local/bin/hpa"]
ENTRYPOINT [ "/usr/local/bin/hpa" ]
CMD ["--help"]