mastodon-app/Dockerfile

48 lines
1.8 KiB
Docker
Raw Normal View History

2020-05-15 17:52:43 +00:00
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
2018-10-30 15:46:13 +00:00
2020-01-06 19:21:25 +00:00
RUN mkdir -p /app/code /app/pkg
2018-10-30 15:46:13 +00:00
WORKDIR /app/code
2020-10-19 18:31:17 +00:00
ARG VERSION=3.2.1
2019-12-12 22:11:35 +00:00
2020-05-15 17:52:43 +00:00
RUN apt-get update && \
apt-get install -y libprotobuf-dev protobuf-compiler libidn11-dev libicu-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm5 libgdbm-dev libicu-dev libssl-dev libyaml-dev libreadline6-dev libxml2-dev libxslt1-dev && \
rm -rf /var/cache/apt /var/lib/apt/lists
2018-10-30 15:46:13 +00:00
2020-02-09 15:43:01 +00:00
RUN gem install --no-document bundler
2018-10-30 15:46:13 +00:00
ENV RAILS_ENV production
ENV NODE_ENV production
RUN curl -L https://github.com/tootsuite/mastodon/archive/v${VERSION}.tar.gz | tar -xz --strip-components 1 -f - && \
2020-02-09 15:43:01 +00:00
bundle config set deployment 'true' && \
bundle install --without test development && \
yarn install --pure-lockfile
2018-10-30 15:46:13 +00:00
# secret keys are not built into assets, so precompiling is safe to do here
# (these variables are required by rake though)
RUN SECRET_KEY_BASE=insecure.secret_key_base OTP_SECRET=insecure.otp_secret \
bundle exec rake assets:precompile
# add nginx config
USER root
RUN rm /etc/nginx/sites-enabled/*
RUN ln -sf /dev/stdout /var/log/nginx/access.log
RUN ln -sf /dev/stderr /var/log/nginx/error.log
ADD nginx_readonlyrootfs.conf /etc/nginx/conf.d/readonlyrootfs.conf
COPY nginx/mastodon.conf /etc/nginx/sites-available/mastodon
RUN ln -s /etc/nginx/sites-available/mastodon /etc/nginx/sites-enabled/mastodon
# add supervisor configs
ADD supervisor/* /etc/supervisor/conf.d/
RUN ln -sf /run/mastodon/supervisord.log /var/log/supervisor/supervisord.log
RUN ln -fs /app/data/env.production /app/code/.env.production
RUN ln -fs /run/mastodon/bullet.log /app/code/log/bullet.log
2018-10-30 15:46:13 +00:00
RUN ln -fs /app/data/system /app/code/public/system
RUN rm -rf /app/code/tmp && ln -fs /tmp/mastodon /app/code/tmp
2020-08-16 08:30:44 +00:00
COPY start.sh cleanup.sh env.template /app/pkg/
2018-10-31 12:53:10 +00:00
2020-01-06 19:21:25 +00:00
CMD [ "/app/pkg/start.sh" ]
2018-10-30 15:46:13 +00:00