bumped upstream version

This commit is contained in:
Tamás Gérczei 2023-11-27 17:17:26 +02:00
parent 75318d12d4
commit de613dabfb
Signed by: tgerczei
GPG Key ID: 5B59A7760597B1A1
1 changed files with 6 additions and 4 deletions

View File

@ -4,7 +4,7 @@ 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.21.0"
LABEL org.opencontainers.image.version="1.21.1"
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}"
@ -14,11 +14,13 @@ LABEL org.opencontainers.image.vendor="Gérczei Tamás"
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://git.gerczei.eu/api/packages/tgerczei/alpine/v3.18/gitea-alpine --no-cache \
git-lfs=3.3.0-r5 \
RUN apk update && \
apk upgrade --no-cache && \
apk add --repository https://git.gerczei.eu/api/packages/tgerczei/alpine/v3.18/gitea-alpine --no-cache \
git-lfs=3.3.0-r6 \
openssh-keygen=9.3_p2-r0 \
bash=5.2.15-r5 \
gitea=1.21.0-r0 && \
gitea=1.21.1-r0 && \
mkdir /var/cache/gitea && \
chown gitea:www-data /var/cache/gitea