Files
Bram 64ff6796ad
Build and Push Docker Images / build-and-push (push) Successful in 2m32s
aandelen watcher
2026-04-20 14:30:57 +02:00

20 lines
390 B
Docker

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"]