11 lines
308 B
Docker
11 lines
308 B
Docker
FROM python:3.12-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --chown=1001:1000 status_bot.py /app/status_bot.py
|
|
COPY --chown=1001:1000 dashboard.html /app/dashboard.html
|
|
COPY --chown=1001:1000 services.example.json /app/services.json
|
|
|
|
RUN adduser -D -u 1001 -g "" -h /app archive-status
|
|
|
|
CMD ["python", "/app/status_bot.py"]
|