Skip to content
Open
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
@@ -1,6 +1,6 @@
# --- Build Stage for Webhook ---
# Use Alpine for the builder to maintain consistency
FROM golang:1.27-alpine AS builder
FROM golang:1.27-alpine@sha256:cf6fca6641884b8433441b2b0652976f975e1d0fdd26d177eaaf8596087f3125 AS builder

# Install git to fetch dependencies
RUN apk add --no-cache git
Expand All @@ -12,7 +12,7 @@ RUN git clone https://github.com/adnanh/webhook.git /build \
&& CGO_ENABLED=0 go build -o webhook .

# --- Final Stage ---
FROM python:3.14-alpine
FROM python:3.14-alpine@sha256:c6ead215bfd31f1e433d968853b7a769989117115b728874824e6c0a27cb96fc

# Set environment variables
ENV WEBHOOK_URL_PREFIX="wiki/hooks"
Expand Down
Loading