From 33f4e953d0181c30b38a89f4255629437979ae20 Mon Sep 17 00:00:00 2001 From: unkindled72 <38880174+ray-ws@users.noreply.github.com> Date: Wed, 29 Nov 2023 18:36:01 +0800 Subject: [PATCH] update(): flarum version to 1.8.0 --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 30b3b5e..292b995 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.16 LABEL description="Simple forum software for building great communities" \ maintainer="Magicalex " -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 \