Files
spothole/Dockerfile
2026-09-11 15:55:57 +01:00

9 lines
151 B
Docker

FROM python:3.13-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8080
EXPOSE 7373
CMD ["python3", "spothole.py"]