v4.0.0 (Icon extensions in URLs, hybrid option)

This commit is contained in:
selfhst-bot
2026-03-08 13:27:45 -04:00
parent 92e3de35c8
commit fd1845d252
5 changed files with 437 additions and 191 deletions

View File

@@ -4,7 +4,7 @@ WORKDIR /app
COPY go.mod main.go ./
RUN CGO_ENABLED=0 go build -o server .
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o server .
FROM scratch
@@ -15,4 +15,7 @@ USER 65534:65534
EXPOSE 4050
HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \
CMD ["/server", "-healthcheck"]
ENTRYPOINT ["/server"]