update(): flarum version to 1.8.0

pull/126/head
unkindled72 2023-11-29 18:36:01 +08:00
parent 3329c55572
commit 33f4e953d0
1 changed files with 6 additions and 1 deletions

View File

@ -3,7 +3,7 @@ FROM alpine:3.16
LABEL description="Simple forum software for building great communities" \
maintainer="Magicalex <magicalex@mondedie.fr>"
ARG VERSION=v1.3.0
ARG VERSION=v1.8.0
ENV GID=991 \
UID=991 \
@ -20,6 +20,11 @@ ENV GID=991 \
GITHUB_TOKEN_AUTH=false \
FLARUM_PORT=8888
# use cn repo urls
RUN echo -e 'https://mirrors.aliyun.com/alpine/v3.16/main/\nhttps://mirrors.aliyun.com/alpine/v3.16/community/' > /etc/apk/repositories && \
apk update && \
apk upgrade
RUN apk add --no-progress --no-cache \
curl \
git \