This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-02 15:46:44 -07:00
|
|
|
FROM ruby:2.3.1-alpine
|
2016-03-14 13:39:39 -07:00
|
|
|
|
2017-04-02 15:46:44 -07:00
|
|
|
ENV RAILS_ENV=production \
|
|
|
|
NODE_ENV=production
|
2016-03-14 13:39:39 -07:00
|
|
|
|
|
|
|
WORKDIR /mastodon
|
|
|
|
|
2017-04-02 15:46:44 -07:00
|
|
|
COPY . /mastodon
|
2016-03-14 13:39:39 -07:00
|
|
|
|
2017-04-02 15:46:44 -07:00
|
|
|
RUN BUILD_DEPS=" \
|
|
|
|
postgresql-dev \
|
|
|
|
libxml2-dev \
|
|
|
|
libxslt-dev \
|
|
|
|
build-base" \
|
|
|
|
&& apk -U upgrade && apk add \
|
|
|
|
$BUILD_DEPS \
|
|
|
|
nodejs \
|
|
|
|
libpq \
|
|
|
|
libxml2 \
|
|
|
|
libxslt \
|
|
|
|
ffmpeg \
|
|
|
|
file \
|
|
|
|
imagemagick \
|
|
|
|
&& npm install -g npm@3 && npm install -g yarn \
|
|
|
|
&& bundle install --deployment --without test development \
|
|
|
|
&& yarn \
|
|
|
|
&& npm cache clean \
|
|
|
|
&& apk del $BUILD_DEPS \
|
|
|
|
&& rm -rf /tmp/* /var/cache/apk/*
|
2016-03-16 03:18:09 -07:00
|
|
|
|
2017-04-02 15:46:44 -07:00
|
|
|
VOLUME /mastodon/public/system /mastodon/public/assets
|