linuxrouter/docker/router-dash/Dockerfile

8 lines
165 B
Text
Raw Normal View History

2026-05-17 03:37:26 -04:00
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/*.py .
EXPOSE 25327
CMD ["python", "main.py"]