notebook
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
FROM python:3.12-slim
|
||||
|
||||
# Závislosti OS (pro extract-msg)
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
gcc \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Python závislosti
|
||||
RUN pip install --no-cache-dir \
|
||||
extract-msg==0.55.0 \
|
||||
pymongo \
|
||||
python-dateutil
|
||||
|
||||
# Pracovní adresář
|
||||
WORKDIR /scripts
|
||||
|
||||
# Container poběží pořád — skripty se spouštějí přes docker exec
|
||||
CMD ["tail", "-f", "/dev/null"]
|
||||
Reference in New Issue
Block a user