Files
spothole/Dockerfile
T
2026-08-05 20:24:10 +01:00

8 lines
139 B
Docker

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