11 lines
202 B
Docker
11 lines
202 B
Docker
# Dockerfile für TI-Status2Mattermost
|
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "ti_status_checker.py"] |