forked from AkkomaGang/akkoma
FloatingGhost
98cb255d12
OTP builds to 1.15 Changelog entry Ensure policies are fully loaded Fix :warn use main branch for linkify Fix warn in tests Migrations for phoenix 1.17 Revert "Migrations for phoenix 1.17" This reverts commit 6a3b2f15b74ea5e33150529385215b7a531f3999. Oban upgrade Add default empty whitelist mix format limit test to amd64 OTP 26 tests for 1.15 use OTP_VERSION tag baka just 1.15 Massive deps update Update locale, deps Mix format shell???? multiline??? ? max cases 1 use assert_recieve don't put_env in async tests don't async conn/fs tests mix format FIx some uploader issues Fix tests
34 lines
959 B
Docker
34 lines
959 B
Docker
FROM hexpm/elixir:1.15.4-erlang-25.3.2.5-alpine-3.18.2
|
|
|
|
ENV MIX_ENV=prod
|
|
ENV ERL_EPMD_ADDRESS=127.0.0.1
|
|
|
|
ARG HOME=/opt/akkoma
|
|
|
|
LABEL org.opencontainers.image.title="akkoma" \
|
|
org.opencontainers.image.description="Akkoma for Docker" \
|
|
org.opencontainers.image.vendor="akkoma.dev" \
|
|
org.opencontainers.image.documentation="https://docs.akkoma.dev/stable/" \
|
|
org.opencontainers.image.licenses="AGPL-3.0" \
|
|
org.opencontainers.image.url="https://akkoma.dev" \
|
|
org.opencontainers.image.revision=$VCS_REF \
|
|
org.opencontainers.image.created=$BUILD_DATE
|
|
|
|
RUN apk add git gcc g++ musl-dev make cmake file-dev exiftool ffmpeg imagemagick libmagic ncurses postgresql-client
|
|
|
|
EXPOSE 4000
|
|
|
|
ARG UID=1000
|
|
ARG GID=1000
|
|
ARG UNAME=akkoma
|
|
|
|
RUN addgroup -g $GID $UNAME
|
|
RUN adduser -u $UID -G $UNAME -D -h $HOME $UNAME
|
|
|
|
WORKDIR /opt/akkoma
|
|
|
|
USER $UNAME
|
|
RUN mix local.hex --force &&\
|
|
mix local.rebar --force
|
|
|
|
CMD ["/opt/akkoma/docker-entrypoint.sh"]
|