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
|
2022-12-11 06:37:00 +00:00
|
|
|
ARG NODE_VERSION="16.18.1-bullseye-slim"
|
2019-02-24 15:32:40 +00:00
|
|
|
|
2022-11-17 11:56:14 +00:00
|
|
|
FROM ghcr.io/moritzheiber/ruby-jemalloc:3.0.4-slim as ruby
|
|
|
|
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 \
|
|
|
|
ca-certificates \
|
|
|
|
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)" && \
|
2022-12-11 06:37:00 +00:00
|
|
|
yarn install --pure-lockfile --network-timeout 600000
|
2022-11-17 11:56:14 +00:00
|
|
|
|
|
|
|
FROM node:${NODE_VERSION}
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
2022-12-15 14:57:17 +00:00
|
|
|
# Ignoreing these here since we don't want to pin any versions and the Debian image removes apt-get content after use
|
|
|
|
# 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" \
|
|
|
|
BIND="0.0.0.0"
|
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
|
2022-11-17 11:56:14 +00:00
|
|
|
RUN OTP_SECRET=precompile_placeholder SECRET_KEY_BASE=precompile_placeholder rails assets:precompile && \
|
|
|
|
yarn cache clean
|
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
|