linuxrouter/docker/routlin-dash/Dockerfile

9 lines
176 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
2026-05-20 04:06:50 -04:00
ARG CACHE_BUST
2026-05-27 22:06:13 -04:00
COPY app/ .
2026-05-17 03:37:26 -04:00
EXPOSE 25327
CMD ["python", "main.py"]