2022-11-17 10:01:16 +00:00
|
|
|
# syntax=docker/dockerfile:1.4
|
2022-11-17 11:56:14 +00:00
|
|
|
# This needs to be bullseye-slim because the Ruby image is built on bullseye-slim
|
2023-04-07 12:26:11 +00:00
|
|
|
ARG NODE_VERSION="16.20-bullseye-slim"
|
2019-02-24 15:32:40 +00:00
|
|
|
|
2023-03-31 16:28:40 +00:00
|
|
|
FROM ghcr.io/moritzheiber/ruby-jemalloc:3.2.2-slim as ruby
|
2022-11-17 11:56:14 +00:00
|
|
|
FROM node:${NODE_VERSION} as build
|
2019-02-24 15:32:40 +00:00
|
|
|
|
2022-11-17 11:56:14 +00:00
|
|
|
COPY --link --from=ruby /opt/ruby /opt/ruby
|
2019-02-24 15:32:40 +00:00
|
|
|
|
2022-11-17 11:56:14 +00:00
|
|
|
ENV DEBIAN_FRONTEND="noninteractive" \
|
|
|
|
PATH="${PATH}:/opt/ruby/bin"
|
2019-02-24 15:32:40 +00:00
|
|
|
|
2022-11-17 11:56:14 +00:00
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
|
|
|
|
WORKDIR /opt/mastodon
|
|
|
|
COPY Gemfile* package.json yarn.lock /opt/mastodon/
|
2019-02-24 15:32:40 +00:00
|
|
|
|
2022-12-15 14:57:17 +00:00
|
|
|
# hadolint ignore=DL3008
|
|
|
|
RUN apt-get update && \
|
2022-11-17 11:56:14 +00:00
|
|
|
apt-get install -y --no-install-recommends build-essential \
|
|
|
|
git \
|
|
|
|
libicu-dev \
|
|
|
|
libidn11-dev \
|
|
|
|
libpq-dev \
|
|
|
|
libjemalloc-dev \
|
|
|
|
zlib1g-dev \
|
|
|
|
libgdbm-dev \
|
|
|
|
libgmp-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libyaml-0-2 \
|
|
|
|
ca-certificates \
|
|
|
|
libreadline8 \
|
|
|
|
python3 \
|
|
|
|
shared-mime-info && \
|
|
|
|
bundle config set --local deployment 'true' && \
|
|
|
|
bundle config set --local without 'development test' && \
|
|
|
|
bundle config set silence_root_warning true && \
|
|
|
|
bundle install -j"$(nproc)" && \
|
2023-03-23 21:49:47 +00:00
|
|
|
yarn install --pure-lockfile --production --network-timeout 600000 && \
|
2023-02-13 03:57:51 +00:00
|
|
|
yarn cache clean
|
2022-11-17 11:56:14 +00:00
|
|
|
|
|
|
|
FROM node:${NODE_VERSION}
|
|
|
|
|
2023-05-04 19:33:32 +00:00
|
|
|
# Use those args to specify your own version flags & suffixes
|
2023-08-25 16:26:44 +00:00
|
|
|
ARG MASTODON_VERSION_PRERELEASE=""
|
|
|
|
ARG MASTODON_VERSION_METADATA=""
|
2023-05-04 19:33:32 +00:00
|
|
|
|
2022-11-17 11:56:14 +00:00
|
|
|
ARG UID="991"
|
|
|
|
ARG GID="991"
|
|
|
|
|
|
|
|
COPY --link --from=ruby /opt/ruby /opt/ruby
|
2019-02-24 15:32:40 +00:00
|
|
|
|
2021-03-20 20:21:57 +00:00
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
2022-11-17 11:56:14 +00:00
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND="noninteractive" \
|
|
|
|
PATH="${PATH}:/opt/ruby/bin:/opt/mastodon/bin"
|
|
|
|
|
2023-05-19 15:13:29 +00:00
|
|
|
# Ignoring these here since we don't want to pin any versions and the Debian image removes apt-get content after use
|
2022-12-15 14:57:17 +00:00
|
|
|
# hadolint ignore=DL3008,DL3009
|
2021-03-20 20:21:57 +00:00
|
|
|
RUN apt-get update && \
|
2022-11-17 11:56:14 +00:00
|
|
|
echo "Etc/UTC" > /etc/localtime && \
|
|
|
|
groupadd -g "${GID}" mastodon && \
|
2022-12-15 14:57:17 +00:00
|
|
|
useradd -l -u "$UID" -g "${GID}" -m -d /opt/mastodon mastodon && \
|
2022-11-17 11:56:14 +00:00
|
|
|
apt-get -y --no-install-recommends install whois \
|
|
|
|
wget \
|
2022-11-22 04:52:18 +00:00
|
|
|
procps \
|
2022-11-17 11:56:14 +00:00
|
|
|
libssl1.1 \
|
|
|
|
libpq5 \
|
|
|
|
imagemagick \
|
|
|
|
ffmpeg \
|
|
|
|
libjemalloc2 \
|
|
|
|
libicu67 \
|
|
|
|
libidn11 \
|
|
|
|
libyaml-0-2 \
|
|
|
|
file \
|
|
|
|
ca-certificates \
|
|
|
|
tzdata \
|
|
|
|
libreadline8 \
|
|
|
|
tini && \
|
|
|
|
ln -s /opt/mastodon /mastodon
|
|
|
|
|
|
|
|
# Note: no, cleaning here since Debian does this automatically
|
|
|
|
# See the file /etc/apt/apt.conf.d/docker-clean within the Docker image's filesystem
|
2019-03-08 15:12:48 +00:00
|
|
|
|
2022-11-17 11:56:14 +00:00
|
|
|
COPY --chown=mastodon:mastodon . /opt/mastodon
|
|
|
|
COPY --chown=mastodon:mastodon --from=build /opt/mastodon /opt/mastodon
|
2019-02-24 15:32:40 +00:00
|
|
|
|
2022-11-17 11:56:14 +00:00
|
|
|
ENV RAILS_ENV="production" \
|
|
|
|
NODE_ENV="production" \
|
|
|
|
RAILS_SERVE_STATIC_FILES="true" \
|
2023-05-04 11:45:39 +00:00
|
|
|
BIND="0.0.0.0" \
|
2023-08-25 16:26:44 +00:00
|
|
|
MASTODON_VERSION_PRERELEASE="${MASTODON_VERSION_PRERELEASE}" \
|
|
|
|
MASTODON_VERSION_METADATA="${MASTODON_VERSION_METADATA}"
|
2019-02-24 15:32:40 +00:00
|
|
|
|
|
|
|
# Set the run user
|
2018-02-20 16:25:01 +00:00
|
|
|
USER mastodon
|
2022-11-17 11:56:14 +00:00
|
|
|
WORKDIR /opt/mastodon
|
2018-02-20 16:25:01 +00:00
|
|
|
|
2019-02-24 15:32:40 +00:00
|
|
|
# Precompile assets
|
2023-02-13 03:57:51 +00:00
|
|
|
RUN OTP_SECRET=precompile_placeholder SECRET_KEY_BASE=precompile_placeholder rails assets:precompile
|
2018-07-14 23:19:09 +00:00
|
|
|
|
2019-02-24 15:32:40 +00:00
|
|
|
# Set the work dir and the container entry point
|
2021-03-20 20:21:57 +00:00
|
|
|
ENTRYPOINT ["/usr/bin/tini", "--"]
|
2019-11-04 11:56:21 +00:00
|
|
|
EXPOSE 3000 4000
|