Add Docker process manager
All checks were successful
Docker Build and Push / build-and-push (push) Successful in 1m11s

This commit is contained in:
2025-08-12 02:36:08 -07:00
parent 842247f8e4
commit 227fdca580

View File

@@ -4,6 +4,12 @@ FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Docker process manager
ENV TINI_VERSION v0.19.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN chmod +x /tini
ENTRYPOINT ["/tini", "--"]
# Install dependencies
RUN apt-get update && apt-get install -y \
gcc \