2023-04-25 00:03:59 +00:00
|
|
|
ARG ELIXIR_IMG=hexpm/elixir
|
2023-05-31 21:11:13 +00:00
|
|
|
ARG ELIXIR_VER=1.12.3
|
2022-12-18 18:57:03 +00:00
|
|
|
ARG ERLANG_VER=24.2.1
|
|
|
|
ARG ALPINE_VER=3.17.0
|
|
|
|
|
2023-04-25 00:03:59 +00:00
|
|
|
FROM ${ELIXIR_IMG}:${ELIXIR_VER}-erlang-${ERLANG_VER}-alpine-${ALPINE_VER} as build
|
2019-07-31 23:35:14 +00:00
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
2019-08-03 02:28:48 +00:00
|
|
|
ENV MIX_ENV=prod
|
2019-07-31 23:35:14 +00:00
|
|
|
|
2023-11-17 16:32:56 +00:00
|
|
|
RUN apk add git gcc g++ musl-dev make cmake file-dev vips rust &&\
|
2022-09-02 20:35:08 +00:00
|
|
|
echo "import Config" > config/prod.secret.exs &&\
|
2019-07-31 23:35:14 +00:00
|
|
|
mix local.hex --force &&\
|
2019-08-03 02:40:31 +00:00
|
|
|
mix local.rebar --force &&\
|
|
|
|
mix deps.get --only prod &&\
|
2019-07-31 23:35:14 +00:00
|
|
|
mkdir release &&\
|
|
|
|
mix release --path release
|
|
|
|
|
2022-12-18 18:57:03 +00:00
|
|
|
FROM alpine:${ALPINE_VER}
|
2019-07-31 23:35:14 +00:00
|
|
|
|
2020-01-10 19:09:14 +00: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-03 02:28:48 +00:00
|
|
|
ARG HOME=/opt/pleroma
|
|
|
|
ARG DATA=/var/lib/pleroma
|
|
|
|
|
2021-12-17 23:00:29 +00:00
|
|
|
RUN apk update &&\
|
2022-11-09 18:45:57 +00:00
|
|
|
apk add exiftool ffmpeg vips libmagic ncurses postgresql-client &&\
|
2019-08-03 02:40:31 +00:00
|
|
|
adduser --system --shell /bin/false --home ${HOME} pleroma &&\
|
2019-08-03 02:28:48 +00:00
|
|
|
mkdir -p ${DATA}/uploads &&\
|
|
|
|
mkdir -p ${DATA}/static &&\
|
|
|
|
chown -R pleroma ${DATA} &&\
|
2019-07-31 23:35:14 +00:00
|
|
|
mkdir -p /etc/pleroma &&\
|
|
|
|
chown -R pleroma /etc/pleroma
|
|
|
|
|
|
|
|
USER pleroma
|
|
|
|
|
2019-08-03 02:28:48 +00:00
|
|
|
COPY --from=build --chown=pleroma:0 /release ${HOME}
|
|
|
|
|
2023-08-05 11:10:35 +00:00
|
|
|
COPY --chown=pleroma --chmod=640 ./config/docker.exs /etc/pleroma/config.exs
|
2019-08-03 02:28:48 +00:00
|
|
|
COPY ./docker-entrypoint.sh ${HOME}
|
|
|
|
|
|
|
|
EXPOSE 4000
|
|
|
|
|
|
|
|
ENTRYPOINT ["/opt/pleroma/docker-entrypoint.sh"]
|