mirror of
https://git.cloudron.io/cloudron/mastodon-app.git
synced 2025-02-16 15:25:13 +00:00
Bump version for 3.4.0
This commit is contained in:
parent
11c767e8bc
commit
7528d51e13
4 changed files with 10 additions and 4 deletions
|
@ -97,3 +97,8 @@
|
|||
[1.6.0]
|
||||
* Update base image to v3
|
||||
|
||||
[1.6.1]
|
||||
* Update Mastodon to 3.4.0
|
||||
* Add follow recommendations for onboarding
|
||||
* Update dependencies
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Federated social network",
|
||||
"version": "1.6.0",
|
||||
"version": "1.6.1",
|
||||
"healthCheckPath": "/about",
|
||||
"httpPort": 8000,
|
||||
"memoryLimit": 1610612736,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
This app packages Mastodon <upstream>3.3.0</upstream>.
|
||||
This app packages Mastodon <upstream>3.4.0</upstream>.
|
||||
|
||||
Your self-hosted, globally interconnected microblogging community.
|
||||
|
||||
|
|
|
@ -3,8 +3,6 @@ FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3f
|
|||
RUN mkdir -p /app/code /app/pkg
|
||||
WORKDIR /app/code
|
||||
|
||||
ARG VERSION=3.3.0
|
||||
|
||||
RUN apt-get update && \
|
||||
apt install -y imagemagick ffmpeg libpq-dev libxml2-dev libxslt1-dev file git-core \
|
||||
g++ libprotobuf-dev protobuf-compiler pkg-config nodejs gcc autoconf \
|
||||
|
@ -18,6 +16,9 @@ RUN gem install --no-document bundler
|
|||
|
||||
ENV RAILS_ENV production
|
||||
ENV NODE_ENV production
|
||||
|
||||
ARG VERSION=3.4.0
|
||||
|
||||
RUN curl -L https://github.com/tootsuite/mastodon/archive/v${VERSION}.tar.gz | tar -xz --strip-components 1 -f - && \
|
||||
bundle config set deployment 'true' && \
|
||||
bundle install --without test development && \
|
||||
|
|
Loading…
Reference in a new issue