mirror of
https://github.com/harsxv/tinystatus.git
synced 2024-09-08 19:04:24 +03:00
13 lines
282 B
Docker
13 lines
282 B
Docker
FROM python:3-alpine
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY checks.yaml ./
|
|
COPY history.html.theme ./
|
|
COPY incidents.md ./
|
|
COPY index.html.theme ./
|
|
COPY requirements.txt ./
|
|
COPY tinystatus.py ./
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
CMD [ "python", "/usr/src/app/tinystatus.py" ]
|