14 lines
192 B
Docker
14 lines
192 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY manager.py .
|
|
COPY config.json .
|
|
|
|
ENV INACTIVITY_SECONDS=10
|
|
|
|
CMD ["python", "manager.py"] |