mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-08-06 10:31:42 +00:00
8 lines
139 B
Docker
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"] |