Compare commits

...

16 Commits

1 changed files with 8 additions and 8 deletions

View File

@ -1,24 +1,24 @@
FROM alpine:3.17.2
FROM alpine:3.19.0
ARG BUILD_DATE
LABEL org.opencontainers.image.title="Gitea - Git with a cup of tea"
LABEL org.opencontainers.image.description="A painless self-hosted Git service."
LABEL org.opencontainers.image.version="1.19.0"
LABEL org.opencontainers.image.version="1.21.2"
LABEL org.opencontainers.image.url="https://gitea.io"
LABEL org.opencontainers.image.authors="Tamás Gérczei <tamas@gerczei.eu>"
LABEL org.opencontainers.image.created="${BUILD_DATE}"
LABEL org.opencontainers.image.source="https://git.gerczei.eu/tgerczei/gitea-alpine"
LABEL org.opencontainers.image.vendor="Gérczei Tamás"
ADD https://www.gerczei.eu/files/tamas@gerczei.eu-5ec0fe1e.rsa.pub /etc/apk/keys/
ADD https://git.gerczei.eu/api/packages/tgerczei/alpine/key /etc/apk/keys/tgerczei@a6d5511b4c93844ff5ab30b8c04ded788463887b193bbd12d1410ef81967ed84.rsa.pub
# using a community package re-built locally via apkbuild with MySQL support
RUN apk add --repository https://www.gerczei.eu/packages/alpine/v3.17 --no-cache \
git-lfs=3.2.0-r4 \
openssh-keygen=9.1_p1-r2 \
bash=5.2.15-r0 \
gitea=1.19.0-r0 && \
RUN apk add --repository https://git.gerczei.eu/api/packages/tgerczei/alpine/v3.19/gitea-alpine --no-cache \
git-lfs=3.4.0-r1 \
openssh-keygen=9.5_p1-r0 \
bash=5.2.21-r0 \
gitea=1.21.2-r0 && \
mkdir /var/cache/gitea && \
chown gitea:www-data /var/cache/gitea