2019-09-03 08:44:57 -07:00
|
|
|
FROM elixir:1.9-alpine as build
|
2019-07-31 16:35:14 -07:00
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
2019-08-02 19:28:48 -07:00
|
|
|
ENV MIX_ENV=prod
|
2019-07-31 16:35:14 -07:00
|
|
|
|
|
|
|
RUN apk add git gcc g++ musl-dev make &&\
|
|
|
|
echo "import Mix.Config" > config/prod.secret.exs &&\
|
|
|
|
mix local.hex --force &&\
|
2019-08-02 19:40:31 -07:00
|
|
|
mix local.rebar --force &&\
|
|
|
|
mix deps.get --only prod &&\
|
2019-07-31 16:35:14 -07:00
|
|
|
mkdir release &&\
|
|
|
|
mix release --path release
|
|
|
|
|
2019-09-04 11:56:26 -07:00
|
|
|
FROM alpine:3.9
|
2019-07-31 16:35:14 -07:00
|
|
|
|
2020-01-10 11:09:14 -08:00
|
|
|
ARG BUILD_DATE
|
|
|
|
ARG VCS_REF
|
|
|
|
|
|
|
|
LABEL maintainer="ops@pleroma.social" \
|
|
|
|
org.opencontainers.image.title="pleroma" \
|
|
|
|
org.opencontainers.image.description="Pleroma for Docker" \
|
|
|
|
org.opencontainers.image.authors="ops@pleroma.social" \
|
|
|
|
org.opencontainers.image.vendor="pleroma.social" \
|
|
|
|
org.opencontainers.image.documentation="https://git.pleroma.social/pleroma/pleroma" \
|
|
|
|
org.opencontainers.image.licenses="AGPL-3.0" \
|
|
|
|
org.opencontainers.image.url="https://pleroma.social" \
|
|
|
|
org.opencontainers.image.revision=$VCS_REF \
|
|
|
|
org.opencontainers.image.created=$BUILD_DATE
|
|
|
|
|
2019-08-02 19:28:48 -07:00
|
|
|
ARG HOME=/opt/pleroma
|
|
|
|
ARG DATA=/var/lib/pleroma
|
|
|
|
|
2019-07-31 16:35:14 -07:00
|
|
|
RUN echo "http://nl.alpinelinux.org/alpine/latest-stable/community" >> /etc/apk/repositories &&\
|
|
|
|
apk update &&\
|
2020-03-31 12:29:43 -07:00
|
|
|
apk add imagemagick ncurses postgresql-client &&\
|
2019-08-02 19:40:31 -07:00
|
|
|
adduser --system --shell /bin/false --home ${HOME} pleroma &&\
|
2019-08-02 19:28:48 -07:00
|
|
|
mkdir -p ${DATA}/uploads &&\
|
|
|
|
mkdir -p ${DATA}/static &&\
|
|
|
|
chown -R pleroma ${DATA} &&\
|
2019-07-31 16:35:14 -07:00
|
|
|
mkdir -p /etc/pleroma &&\
|
|
|
|
chown -R pleroma /etc/pleroma
|
|
|
|
|
|
|
|
USER pleroma
|
|
|
|
|
2019-08-02 19:28:48 -07:00
|
|
|
COPY --from=build --chown=pleroma:0 /release ${HOME}
|
|
|
|
|
|
|
|
COPY ./config/docker.exs /etc/pleroma/config.exs
|
|
|
|
COPY ./docker-entrypoint.sh ${HOME}
|
|
|
|
|
|
|
|
EXPOSE 4000
|
|
|
|
|
|
|
|
ENTRYPOINT ["/opt/pleroma/docker-entrypoint.sh"]
|