The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

129 lines
3.8 KiB

  1. FROM ubuntu:18.04 as build-dep
  2. # Use bash for the shell
  3. SHELL ["bash", "-c"]
  4. # Install Node v12 (LTS)
  5. ENV NODE_VER="12.14.0"
  6. RUN echo "Etc/UTC" > /etc/localtime && \
  7. apt update && \
  8. apt -y install wget python && \
  9. cd ~ && \
  10. wget https://nodejs.org/download/release/v$NODE_VER/node-v$NODE_VER-linux-x64.tar.gz && \
  11. tar xf node-v$NODE_VER-linux-x64.tar.gz && \
  12. rm node-v$NODE_VER-linux-x64.tar.gz && \
  13. mv node-v$NODE_VER-linux-x64 /opt/node
  14. # Install jemalloc
  15. ENV JE_VER="5.2.1"
  16. RUN apt update && \
  17. apt -y install make autoconf gcc g++ && \
  18. cd ~ && \
  19. wget https://github.com/jemalloc/jemalloc/archive/$JE_VER.tar.gz && \
  20. tar xf $JE_VER.tar.gz && \
  21. cd jemalloc-$JE_VER && \
  22. ./autogen.sh && \
  23. ./configure --prefix=/opt/jemalloc && \
  24. make -j$(nproc) > /dev/null && \
  25. make install_bin install_include install_lib
  26. # Install ruby
  27. ENV RUBY_VER="2.6.5"
  28. ENV CPPFLAGS="-I/opt/jemalloc/include"
  29. ENV LDFLAGS="-L/opt/jemalloc/lib/"
  30. RUN apt update && \
  31. apt -y install build-essential \
  32. bison libyaml-dev libgdbm-dev libreadline-dev \
  33. libncurses5-dev libffi-dev zlib1g-dev libssl-dev && \
  34. cd ~ && \
  35. wget https://cache.ruby-lang.org/pub/ruby/${RUBY_VER%.*}/ruby-$RUBY_VER.tar.gz && \
  36. tar xf ruby-$RUBY_VER.tar.gz && \
  37. cd ruby-$RUBY_VER && \
  38. ./configure --prefix=/opt/ruby \
  39. --with-jemalloc \
  40. --with-shared \
  41. --disable-install-doc && \
  42. ln -s /opt/jemalloc/lib/* /usr/lib/ && \
  43. make -j$(nproc) > /dev/null && \
  44. make install
  45. ENV PATH="${PATH}:/opt/ruby/bin:/opt/node/bin"
  46. RUN npm install -g yarn && \
  47. gem install bundler && \
  48. apt update && \
  49. apt -y install git libicu-dev libidn11-dev \
  50. libpq-dev libprotobuf-dev protobuf-compiler
  51. COPY Gemfile* package.json yarn.lock /opt/mastodon/
  52. RUN cd /opt/mastodon && \
  53. bundle config set deployment 'true' && \
  54. bundle config set without 'development test' && \
  55. bundle install -j$(nproc) && \
  56. yarn install --pure-lockfile
  57. FROM ubuntu:18.04
  58. # Copy over all the langs needed for runtime
  59. COPY --from=build-dep /opt/node /opt/node
  60. COPY --from=build-dep /opt/ruby /opt/ruby
  61. COPY --from=build-dep /opt/jemalloc /opt/jemalloc
  62. # Add more PATHs to the PATH
  63. ENV PATH="${PATH}:/opt/ruby/bin:/opt/node/bin:/opt/mastodon/bin"
  64. # Create the mastodon user
  65. ARG UID=991
  66. ARG GID=991
  67. RUN apt update && \
  68. echo "Etc/UTC" > /etc/localtime && \
  69. ln -s /opt/jemalloc/lib/* /usr/lib/ && \
  70. apt install -y whois wget && \
  71. addgroup --gid $GID mastodon && \
  72. useradd -m -u $UID -g $GID -d /opt/mastodon mastodon && \
  73. echo "mastodon:`head /dev/urandom | tr -dc A-Za-z0-9 | head -c 24 | mkpasswd -s -m sha-256`" | chpasswd
  74. # Install mastodon runtime deps
  75. RUN apt -y --no-install-recommends install \
  76. libssl1.1 libpq5 imagemagick ffmpeg \
  77. libicu60 libprotobuf10 libidn11 libyaml-0-2 \
  78. file ca-certificates tzdata libreadline7 && \
  79. apt -y install gcc && \
  80. ln -s /opt/mastodon /mastodon && \
  81. gem install bundler && \
  82. rm -rf /var/cache && \
  83. rm -rf /var/lib/apt/lists/*
  84. # Add tini
  85. ENV TINI_VERSION="0.18.0"
  86. ENV TINI_SUM="12d20136605531b09a2c2dac02ccee85e1b874eb322ef6baf7561cd93f93c855"
  87. ADD https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini /tini
  88. RUN echo "$TINI_SUM tini" | sha256sum -c -
  89. RUN chmod +x /tini
  90. # Copy over mastodon source, and dependencies from building, and set permissions
  91. COPY --chown=mastodon:mastodon . /opt/mastodon
  92. COPY --from=build-dep --chown=mastodon:mastodon /opt/mastodon /opt/mastodon
  93. # Run mastodon services in prod mode
  94. ENV RAILS_ENV="production"
  95. ENV NODE_ENV="production"
  96. # Tell rails to serve static files
  97. ENV RAILS_SERVE_STATIC_FILES="true"
  98. ENV BIND="0.0.0.0"
  99. # Set the run user
  100. USER mastodon
  101. # Precompile assets
  102. RUN cd ~ && \
  103. OTP_SECRET=precompile_placeholder SECRET_KEY_BASE=precompile_placeholder rails assets:precompile && \
  104. yarn cache clean
  105. # Set the work dir and the container entry point
  106. WORKDIR /opt/mastodon
  107. ENTRYPOINT ["/tini", "--"]
  108. EXPOSE 3000 4000