mirror of
https://github.com/gadgethd/ukmesh.git
synced 2026-09-09 08:43:45 +00:00
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>
10 lines
397 B
Docker
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"]
|