Bump version for 3.4.0

This commit is contained in:
Johannes Zellner 2021-05-17 10:38:18 +02:00
parent 11c767e8bc
commit 7528d51e13
4 changed files with 10 additions and 4 deletions

View file

@ -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

View file

@ -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,

View file

@ -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.

View file

@ -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 && \