Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


# Building wheels for later useage
FROM python:3.13.13@sha256:15a460e69443a42f2fa947b565bfade376510f54400bd9aa44f35c0c5078b7ec AS builder-base
FROM python:3.13.14@sha256:4c822f0fadfeba9ea973d81fb5bbd5c2106f12ae02d0a5cdd48907909395310b AS builder-base


RUN <<eot
Expand Down Expand Up @@ -44,7 +44,7 @@ COPY --from=w-builder /wheels ./wheels


# base fhempy will be installed
FROM python:3.13.13@sha256:15a460e69443a42f2fa947b565bfade376510f54400bd9aa44f35c0c5078b7ec AS base
FROM python:3.13.14@sha256:4c822f0fadfeba9ea973d81fb5bbd5c2106f12ae02d0a5cdd48907909395310b AS base

RUN apt update && \
apt install dbus python-dbus-dev curl -y --no-install-recommends \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.wheels
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1@sha256:87999aa3d42bdc6bea60565083ee17e86d1f3339802f543c0d03998580f9cb89

# base
FROM python:3.13.13@sha256:15a460e69443a42f2fa947b565bfade376510f54400bd9aa44f35c0c5078b7ec as base
FROM python:3.13.14@sha256:4c822f0fadfeba9ea973d81fb5bbd5c2106f12ae02d0a5cdd48907909395310b as base
RUN apt update && \
apt install dbus python-dbus-dev build-essential libssl-dev libffi-dev python3-dev -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
Expand Down
Loading