Migrate CI to 4-job pipeline with SHA-pinned actions #4

Merged
jcabillot merged 3 commits from feat/gitea-actions-v2 into master 2026-06-09 08:35:21 -04:00
Showing only changes of commit 58c0a69b5b - Show all commits
+3 -2
View File
@@ -1,9 +1,10 @@
FROM "alpine:3.23"
FROM alpine:3.23
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
COPY entrypoint.sh /entrypoint.sh
COPY patch.py /tmp/patch.py
# hadolint ignore=DL3018
RUN apk add --no-cache offlineimap openssl && \
adduser -D offlineimap && \
# Force SECLEVEL=1 in imaplib2 to allow connecting to servers with weak DH keys (DH_KEY_TOO_SMALL)
@@ -15,7 +16,7 @@ RUN apk add --no-cache offlineimap openssl && \
COPY --chown=offlineimap offlineimaprc.*.tmpl /home/offlineimap/
# Add Tini
#ENV "TINI_VERSION" "v0.16.1"
ENV "TINI_VERSION" "v0.16.1"
#ADD "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini" "/tini"
#RUN chmod +x "/tini"
#ENTRYPOINT ["/tini", "--"]