mirror of
https://github.com/correl/docker-pleroma.git
synced 2024-11-23 11:09:55 +00:00
218c735d75
Bumps elixir from 1.10.4-alpine to 1.11.2-alpine. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 lines
659 B
Docker
33 lines
659 B
Docker
FROM elixir:1.11.2-alpine
|
|
|
|
ENV UID=911 GID=911 \
|
|
MIX_ENV=prod
|
|
|
|
ARG PLEROMA_VER=develop
|
|
|
|
RUN apk -U upgrade \
|
|
&& apk add --no-cache \
|
|
build-base \
|
|
cmake \
|
|
git \
|
|
file-dev
|
|
|
|
RUN addgroup -g ${GID} pleroma \
|
|
&& adduser -h /pleroma -s /bin/sh -D -G pleroma -u ${UID} pleroma
|
|
|
|
USER pleroma
|
|
WORKDIR /pleroma
|
|
|
|
RUN git clone -b develop https://git.pleroma.social/pleroma/pleroma.git /pleroma \
|
|
&& git checkout ${PLEROMA_VER}
|
|
|
|
COPY config/secret.exs /pleroma/config/prod.secret.exs
|
|
|
|
RUN mix local.rebar --force \
|
|
&& mix local.hex --force \
|
|
&& mix deps.get \
|
|
&& mix compile
|
|
|
|
VOLUME /pleroma/uploads/
|
|
|
|
CMD ["mix", "phx.server"]
|