chinwagsocial/Dockerfile

122 lines
3.9 KiB
Docker
Raw Normal View History

2020-06-25 20:17:53 +10:00
FROM ubuntu:20.04 as build-dep
2019-02-25 02:32:40 +11:00
# Use bash for the shell
SHELL ["/bin/bash", "-c"]
2021-11-19 08:00:38 +11:00
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
2019-02-25 02:32:40 +11:00
# Install Node v16 (LTS)
ENV NODE_VER="16.14.2"
2020-06-25 20:17:53 +10:00
RUN ARCH= && \
dpkgArch="$(dpkg --print-architecture)" && \
case "${dpkgArch##*-}" in \
amd64) ARCH='x64';; \
ppc64el) ARCH='ppc64le';; \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac && \
echo "Etc/UTC" > /etc/localtime && \
apt-get update && \
2021-11-19 08:00:38 +11:00
apt-get install -y --no-install-recommends ca-certificates wget python apt-utils && \
2019-02-25 02:32:40 +11:00
cd ~ && \
wget -q https://nodejs.org/download/release/v$NODE_VER/node-v$NODE_VER-linux-$ARCH.tar.gz && \
tar xf node-v$NODE_VER-linux-$ARCH.tar.gz && \
rm node-v$NODE_VER-linux-$ARCH.tar.gz && \
mv node-v$NODE_VER-linux-$ARCH /opt/node
2019-02-25 02:32:40 +11:00
# Install Ruby 3.0
ENV RUBY_VER="3.0.3"
RUN apt-get update && \
apt-get install -y --no-install-recommends build-essential \
bison libyaml-dev libgdbm-dev libreadline-dev libjemalloc-dev \
2019-02-25 02:32:40 +11:00
libncurses5-dev libffi-dev zlib1g-dev libssl-dev && \
cd ~ && \
wget https://cache.ruby-lang.org/pub/ruby/${RUBY_VER%.*}/ruby-$RUBY_VER.tar.gz && \
tar xf ruby-$RUBY_VER.tar.gz && \
cd ruby-$RUBY_VER && \
./configure --prefix=/opt/ruby \
--with-jemalloc \
--with-shared \
--disable-install-doc && \
make -j"$(nproc)" > /dev/null && \
make install && \
rm -rf ../ruby-$RUBY_VER.tar.gz ../ruby-$RUBY_VER
2019-02-25 02:32:40 +11:00
ENV PATH="${PATH}:/opt/ruby/bin:/opt/node/bin"
RUN npm install -g npm@latest && \
npm install -g yarn && \
gem install bundler && \
apt-get update && \
apt-get install -y --no-install-recommends git libicu-dev libidn11-dev \
2022-02-15 02:08:02 +11:00
libpq-dev shared-mime-info
2019-02-25 02:32:40 +11:00
COPY Gemfile* package.json yarn.lock /opt/mastodon/
2019-02-25 02:32:40 +11:00
RUN cd /opt/mastodon && \
bundle config set --local deployment 'true' && \
bundle config set --local without 'development test' && \
bundle config set silence_root_warning true && \
bundle install -j"$(nproc)" && \
2019-02-25 02:32:40 +11:00
yarn install --pure-lockfile
2020-06-25 20:17:53 +10:00
FROM ubuntu:20.04
2019-02-25 02:32:40 +11:00
# Copy over all the langs needed for runtime
COPY --from=build-dep /opt/node /opt/node
COPY --from=build-dep /opt/ruby /opt/ruby
# Add more PATHs to the PATH
ENV PATH="${PATH}:/opt/ruby/bin:/opt/node/bin:/opt/mastodon/bin"
# Create the mastodon user
ARG UID=991
ARG GID=991
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN apt-get update && \
2019-02-25 02:32:40 +11:00
echo "Etc/UTC" > /etc/localtime && \
apt-get install -y --no-install-recommends whois wget && \
2019-02-25 02:32:40 +11:00
addgroup --gid $GID mastodon && \
useradd -m -u $UID -g $GID -d /opt/mastodon mastodon && \
echo "mastodon:$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 24 | mkpasswd -s -m sha-256)" | chpasswd && \
rm -rf /var/lib/apt/lists/*
2019-02-25 02:32:40 +11:00
# Install mastodon runtime deps
2021-11-19 08:00:38 +11:00
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-get update && \
apt-get -y --no-install-recommends install \
libssl1.1 libpq5 imagemagick ffmpeg libjemalloc2 \
2022-02-15 02:08:02 +11:00
libicu66 libidn11 libyaml-0-2 \
2021-11-19 08:00:38 +11:00
file ca-certificates tzdata libreadline8 gcc tini apt-utils && \
2019-02-25 02:32:40 +11:00
ln -s /opt/mastodon /mastodon && \
gem install bundler && \
rm -rf /var/cache && \
rm -rf /var/lib/apt/lists/*
2019-02-25 02:32:40 +11:00
# Copy over mastodon source, and dependencies from building, and set permissions
COPY --chown=mastodon:mastodon . /opt/mastodon
COPY --from=build-dep --chown=mastodon:mastodon /opt/mastodon /opt/mastodon
# Run mastodon services in prod mode
2019-02-25 02:32:40 +11:00
ENV RAILS_ENV="production"
ENV NODE_ENV="production"
# Tell rails to serve static files
ENV RAILS_SERVE_STATIC_FILES="true"
ENV BIND="0.0.0.0"
2019-02-25 02:32:40 +11:00
# Set the run user
USER mastodon
2019-02-25 02:32:40 +11:00
# Precompile assets
RUN cd ~ && \
OTP_SECRET=precompile_placeholder SECRET_KEY_BASE=precompile_placeholder rails assets:precompile && \
yarn cache clean
2019-02-25 02:32:40 +11:00
# Set the work dir and the container entry point
WORKDIR /opt/mastodon
ENTRYPOINT ["/usr/bin/tini", "--"]
EXPOSE 3000 4000