14 lines
301 B
Docker
14 lines
301 B
Docker
FROM python:3.13-slim
|
|
|
|
# Arbeitsverzeichnis im Container
|
|
WORKDIR /app
|
|
|
|
# Abhängigkeiten installieren
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY script/* /app/script-dist/
|
|
COPY entrypoint.sh /app/
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
CMD ["sh", "/app/entrypoint.sh"]
|