Files
ukmesh/Dockerfile.mosquitto-reloader
T
dependabot[bot]andhermes-gadget ed33d1f67f chore(deps): bump python from 3.12-alpine to 3.13-alpine (#38)
Bumps python from 3.12-alpine to 3.13-alpine.

---
updated-dependencies:
- dependency-name: python
  dependency-version: 3.13-alpine
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hermes-gadget <whatinthe3duk@gmail.com>
2026-08-11 04:10:48 +01:00

10 lines
397 B
Docker

FROM python:3.13-alpine@sha256:399babc8b49529dabfd9c922f2b5eea81d611e4512e3ed250d75bd2e7683f4b0
ARG SOURCE_REVISION=unknown
LABEL org.opencontainers.image.revision="${SOURCE_REVISION}" \
org.opencontainers.image.source="https://github.com/gadgethd/ukmesh"
WORKDIR /app
COPY docker/mosquitto-reloader.py /app/reloader.py
USER 65534:65534
EXPOSE 8080
CMD ["python3", "-u", "/app/reloader.py"]