aandelen watcher
Build and Push Docker Images / build-and-push (push) Successful in 2m32s

This commit is contained in:
2026-04-20 14:30:57 +02:00
parent c4ca8402ca
commit 64ff6796ad
8 changed files with 449 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /app
RUN apt-get update \
&& apt-get install -y --no-install-recommends tzdata ca-certificates \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN mkdir -p /data
COPY aandelen.py .
CMD ["python", "aandelen.py"]