moved some to cvtt_docker

This commit is contained in:
2025-04-25 17:52:29 -04:00
parent 99e9516830
commit 84569a7c24
70 changed files with 187 additions and 57 deletions
@@ -0,0 +1,25 @@
FROM python:3.12-slim
# libpq needed for Timescale
RUN apt-get update && apt-get install -y \
apt-utils \
libpq-dev \
build-essential
COPY requirements.txt /
RUN pip install --upgrade pip --root-user-action=ignore
RUN pip install -r /requirements.txt --root-user-action=ignore
COPY cvttpy /cvttpy
RUN mkdir -p /logs /config
SHELL ["/bin/bash", "-c"]
ENV PYTHONPATH=/
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]